gpt4 book ai didi

android - 为什么我在使用 imageView.getWidth() 时得到 0 值

转载 作者:行者123 更新时间:2023-11-29 17:32:03 26 4
gpt4 key购买 nike

我想从 imageView 对象获取宽度值,但是当我运行以下代码时,它返回一个 0 值。为什么我在使用 imageView.getWidth() 时得到 0 值?我该如何解决这个问题?

public class MainActivity extends Activity {
ImageView imageView;
TextView textView;


protected void onCreate(Bundle bundle) {
super.onCreate(bundle);
setContentView(R.layout.activity_main);
imageView= (ImageView) findViewById(R.id.imageView);
textView = (TextView) findViewById(R.id.textView);
Integer i = imageView.getWidth();
textView.setText(i.toString());
}}

最佳答案

像这样在 post 方法中简单地读取 ImageView 的宽度:

public class MainActivity extends Activity {
ImageView imageView;
TextView textView;

protected void onCreate(Bundle bundle) {
super.onCreate(bundle);
setContentView(R.layout.activity_main);
imageView = (ImageView) findViewById(R.id.imageView);
textView = (TextView) findViewById(R.id.textView);
imageView.post(new Runnable() {
@Override
public void run() {
Integer i = imageView.getWidth();
textView.setText(i.toString());
}
});
}
}

一旦 ImageView 的所有生命周期方法都被调用,post 回调就会执行,这意味着整个 View 已经被测量,因此您有一个适当的 View 宽度。

这有帮助吗?

关于android - 为什么我在使用 imageView.getWidth() 时得到 0 值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32445717/

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