我正在以编程方式设置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
在单击editext后,我们得到: 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”线程中进行设置。所以我不确定为什么这行不通。
答案 0 :(得分:0)
好的,所以我想出了解决问题的方法。使用上面的“更新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();
将不返回视图的视觉位置。您需要通过获取与视图关联的布局参数并获取其边距来获取视图的位置。
现在我开始意识到,约束布局的关键是必须具有xml或通过代码定义的约束。
例如。
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
具有此功能,边距可以引用其扩展内容,否则,视图的位置将保持不变。
答案 1 :(得分:-1)
将setX
和setY
替换为leftMargin
和topMargin
来弹出位置,它将在大于23的API上按预期工作。
我无法解释为什么,但是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;
}
});