gpt4 book ai didi

Android - 我无法以编程方式设置 EditText 布局宽度

转载 作者:行者123 更新时间:2023-12-04 07:54:13 25 4
gpt4 key购买 nike

我尝试了两种方法来设置 EditText 的宽度,但没有得到正确的结果。
xml 文件包含:

<TextView
android:id="@+id/textView1"
style="@android:style/Widget.AutoCompleteTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:hint="@string/classname"
android:textSize="25sp" />

<TextView
android:id="@+id/textView2"
style="@android:style/Widget.AutoCompleteTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:hint="@string/teacher"
android:textSize="25sp" />
第一种方式:
TextView tw1 = (TextView) findViewById(R.id.textView1);
TextView tw2 = (TextView) findViewById(R.id.textView2);
tw2.setLayoutParams(new LinearLayout.LayoutParams(tw1.getLayoutParams().width, LinearLayout.LayoutParams.WRAP_CONTENT));
第二种方式:
TextView tw1 = (TextView) findViewById(R.id.textView1);
TextView tw2 = (TextView) findViewById(R.id.textView2);
tw2.setWidth(tw1.getWidth());
虽然第一个代码根本不起作用,但第二个代码给出了一个不相关的结果。我的错误是什么或这样做的正确方法是什么?

最佳答案

正如@Amin 所说,在 onCreate 或 onStart 或 onResume 方法中使用 getWidth 时,布局宽度为零。我找到了这样的解决方案:

tw1.getViewTreeObserver().addOnGlobalLayoutListener(new ViewTreeObserver.OnGlobalLayoutListener() {
@Override
public void onGlobalLayout() {
tw1.getViewTreeObserver().removeOnGlobalLayoutListener(this);
int theWidth = tw1.getWidth();
tw2.setWidth(theWidth);
}
});
当 View 对象的属性更改时调用此方法。对于这个问题,我认为这是一个很好的解决方案。

关于Android - 我无法以编程方式设置 EditText 布局宽度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66788785/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com