View.setX 阻止 adjustPan 工作
View.setX prevents adjustPan from working
我正在以编程方式设置 edittext
的 x 值。但是,这样做时调整平移功能不起作用。关于如何使这项工作的任何想法。 activity
未处于全屏模式,这仅发生在 APIs > 23
中。
例如。
Edittext editext = findViewById(R.id.edittext);
edittext.setX(200);
//现在点击edittext
,如果在屏幕上足够低就会被软键盘覆盖
注意:setY()
也会发生这种情况
这是重现错误的示例:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Context context = this;
setContentView(R.layout.activity_main);
//Get edittext from layout file and set X and Y to the bottom
//left of screen
EditText edittext = findViewById(R.id.editText);
edittext.setX(0);
//Getting device frame to make sure its below keyboard, Not
//necessary can just guess any value
edittext.setY(getDeviceFrame(context).getHeight() / 1.2f);
}
布局为:
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<EditText
android:id="@+id/editText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:ems="10"
android:inputType="textPersonName"
android:text="Name"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
以及清单:
<activity android:name=".MainActivity"
android:windowSoftInputMode="adjustPan">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category
android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
导致布局:
Edittext after programmatic setX and setY
点击编辑文本后,我们得到:
Hidden editext
你能看到的被键盘隐藏了。
更新:
我尝试使用不同的变体来移动 EditText,但仍然无济于事。
例如
edittext.animate().x(200);
更新 2:
我还没有解决这个问题。随着我做了一些测试,我已经越来越接近了,似乎使用布局参数来控制视图的定位在一定程度上起作用。
例如
ConstraintLayout.LayoutParams layoutParams =
(ConstraintLayout.LayoutParams) view.getLayoutParams();
layoutParams.leftMargin = 200; //Your X Coordinate
layoutParams.topMargin = 200; //Your Y Coordinate
view.setLayoutParams(layoutParams);
在某种程度上,我的意思是我在测试库中弄乱了这些方法的功能,并且似乎可以从 onCreate() 执行上述操作。但是,在我的应用程序中,我正在回调中进行调用。 SetX 工作正常,我不必在 'post' 线程或 'runOnMainUI' 线程中设置它。所以我不确定为什么这不起作用。
好的,我想出了解决问题的方法。使用上面 "Update 2" 的答案,我可以通过一些调整获得解决方案。
此代码:
ConstraintLayout.LayoutParams layoutParams =
(ConstraintLayout.LayoutParams) view.getLayoutParams();
layoutParams.leftMargin = 200; //Your X Coordinate
layoutParams.topMargin = 200; //Your Y Coordinate
view.setLayoutParams(layoutParams);
(您可以使用您正在使用的任何布局而不是约束)
是 setX() 和 setY() 的替代方法,允许 adjustPan 工作。但是,使用 :
获取视图 x 或 y 定位
view.getX();
view.getY();
不会return视图的视觉定位。您需要通过获取与视图关联的布局参数并获取其边距来获取视图的位置。
现在我开始意识到约束布局的关键是您必须在 xml 中或通过代码定义约束。
例如
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
有了这个,边距就可以参考它的扩展来源,没有这个,视图的定位就不会移动。
将 setX
和 setY
替换为 leftMargin
和 topMargin
用于弹出定位,它会在 API 大于 23 时正常工作。
我无法解释为什么 API 23.
上不存在该问题
如建议的那样,这里是一个代码示例,用于通过拖动按钮移动弹出布局并保持调整平移工作。
final View myNote = getActivity().getLayoutInflater().inflate(R.layout.viewer_annotation_layout, null);
final RelativeLayout.LayoutParams noteLayoutParams = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT);
myNote.setLayoutParams(noteLayoutParams);
mainScreenLayout.addView(myNote, noteLayoutParams);
btnmove.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent event) {
switch (event.getAction() & MotionEvent.ACTION_MASK) {
case MotionEvent.ACTION_DOWN:
//addednotedX = myNote.getX() - event.getRawX();
//addednotedY = myNote.getY() - event.getRawY();
addednotedX = noteLayoutParams.leftMargin - event.getRawX();
addednotedY = noteLayoutParams.topMargin - event.getRawY();
break;
case MotionEvent.ACTION_MOVE:
int newposx = event.getRawX() + addednotedX;
int newposy = event.getRawY() + addednotedY;
/* this is move the Note layout but prevent adjsutpan working */
//myNote.setX(newposx);
//myNote.setY(newposy);
/* this is move the Note layout and keep adjsutpan working */
noteLayoutParams.leftMargin = newposx;
noteLayoutParams.topMargin = newposy;
myNote.setLayoutParams(noteLayoutParams);
break;
default:
return false;
}
return false;
}
});
我正在以编程方式设置 edittext
的 x 值。但是,这样做时调整平移功能不起作用。关于如何使这项工作的任何想法。 activity
未处于全屏模式,这仅发生在 APIs > 23
中。
例如。
Edittext editext = findViewById(R.id.edittext);
edittext.setX(200);
//现在点击edittext
,如果在屏幕上足够低就会被软键盘覆盖
注意:setY()
这是重现错误的示例:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Context context = this;
setContentView(R.layout.activity_main);
//Get edittext from layout file and set X and Y to the bottom
//left of screen
EditText edittext = findViewById(R.id.editText);
edittext.setX(0);
//Getting device frame to make sure its below keyboard, Not
//necessary can just guess any value
edittext.setY(getDeviceFrame(context).getHeight() / 1.2f);
}
布局为:
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<EditText
android:id="@+id/editText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:ems="10"
android:inputType="textPersonName"
android:text="Name"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</android.support.constraint.ConstraintLayout>
以及清单:
<activity android:name=".MainActivity"
android:windowSoftInputMode="adjustPan">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category
android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
导致布局: Edittext after programmatic setX and setY
点击编辑文本后,我们得到: Hidden editext
你能看到的被键盘隐藏了。
更新: 我尝试使用不同的变体来移动 EditText,但仍然无济于事。
例如
edittext.animate().x(200);
更新 2: 我还没有解决这个问题。随着我做了一些测试,我已经越来越接近了,似乎使用布局参数来控制视图的定位在一定程度上起作用。
例如
ConstraintLayout.LayoutParams layoutParams =
(ConstraintLayout.LayoutParams) view.getLayoutParams();
layoutParams.leftMargin = 200; //Your X Coordinate
layoutParams.topMargin = 200; //Your Y Coordinate
view.setLayoutParams(layoutParams);
在某种程度上,我的意思是我在测试库中弄乱了这些方法的功能,并且似乎可以从 onCreate() 执行上述操作。但是,在我的应用程序中,我正在回调中进行调用。 SetX 工作正常,我不必在 'post' 线程或 'runOnMainUI' 线程中设置它。所以我不确定为什么这不起作用。
好的,我想出了解决问题的方法。使用上面 "Update 2" 的答案,我可以通过一些调整获得解决方案。
此代码:
ConstraintLayout.LayoutParams layoutParams =
(ConstraintLayout.LayoutParams) view.getLayoutParams();
layoutParams.leftMargin = 200; //Your X Coordinate
layoutParams.topMargin = 200; //Your Y Coordinate
view.setLayoutParams(layoutParams);
(您可以使用您正在使用的任何布局而不是约束)
是 setX() 和 setY() 的替代方法,允许 adjustPan 工作。但是,使用 :
获取视图 x 或 y 定位view.getX();
view.getY();
不会return视图的视觉定位。您需要通过获取与视图关联的布局参数并获取其边距来获取视图的位置。
现在我开始意识到约束布局的关键是您必须在 xml 中或通过代码定义约束。
例如
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
有了这个,边距就可以参考它的扩展来源,没有这个,视图的定位就不会移动。
将 setX
和 setY
替换为 leftMargin
和 topMargin
用于弹出定位,它会在 API 大于 23 时正常工作。
我无法解释为什么 API 23.
上不存在该问题如建议的那样,这里是一个代码示例,用于通过拖动按钮移动弹出布局并保持调整平移工作。
final View myNote = getActivity().getLayoutInflater().inflate(R.layout.viewer_annotation_layout, null);
final RelativeLayout.LayoutParams noteLayoutParams = new RelativeLayout.LayoutParams(RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.WRAP_CONTENT);
myNote.setLayoutParams(noteLayoutParams);
mainScreenLayout.addView(myNote, noteLayoutParams);
btnmove.setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View view, MotionEvent event) {
switch (event.getAction() & MotionEvent.ACTION_MASK) {
case MotionEvent.ACTION_DOWN:
//addednotedX = myNote.getX() - event.getRawX();
//addednotedY = myNote.getY() - event.getRawY();
addednotedX = noteLayoutParams.leftMargin - event.getRawX();
addednotedY = noteLayoutParams.topMargin - event.getRawY();
break;
case MotionEvent.ACTION_MOVE:
int newposx = event.getRawX() + addednotedX;
int newposy = event.getRawY() + addednotedY;
/* this is move the Note layout but prevent adjsutpan working */
//myNote.setX(newposx);
//myNote.setY(newposy);
/* this is move the Note layout and keep adjsutpan working */
noteLayoutParams.leftMargin = newposx;
noteLayoutParams.topMargin = newposy;
myNote.setLayoutParams(noteLayoutParams);
break;
default:
return false;
}
return false;
}
});