我在Linearlayout中以编程方式添加了View(按钮).LinearLayout由Fragment中的XML进行了布局。
我想获得按钮宽度,但总是返回0.
我用Google搜索了这个问题,
getWidth仅适用于WindowsFocusChanged。
public void onWindowFocusChanged(boolean hasFocus) { }
但Fragment没有这种方法。
如何在Fragment中获取视图宽度?
答案 0 :(得分:8)
查看帖子GlobalLayoutListener。您可以使用Button
中的onCreateView()
上的监听器,因为您使用了onWindowFocusChanged
。它也比onWindowFocusChanged()
更可靠。
试试如下:
final View myView = profileContainer.findViewById(R.id.sub_page_padding); ViewTreeObserver vto = profilePadding.getViewTreeObserver(); vto.addOnGlobalLayoutListener(new OnGlobalLayoutListener() { @Override public void onGlobalLayout() { Log.d("TEST", "Height = " + myView.getHeight() + " Width = " + myView.getWidth()); ViewTreeObserver obs = profilePadding.getViewTreeObserver(); obs.removeGlobalOnLayoutListener(this); } });
答案 1 :(得分:7)
我遇到了类似的问题并在Fragment回调onViewCreated()中解决了这个问题:
@Override
public void onViewCreated(View view, Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
view.post(new Runnable() {
@Override
public void run() {
// do operations or methods involved
// View.getWidth(); or View.getHeight();
// here
}
});
}
run()在渲染所有视图后运行...