所以我正在搜索所有getHeight / widht问题 - 帖子,并尝试了不同的方法来解决问题(比如globalLayoutListener或Runnable),等待,直到创建了FrameLayout ......但仍然是我的getHeight返回0。 所以现在这是我的代码:
private void zurechtruecken() {
int n=1;
spB =(FrameLayout) findViewById(R.id.spielbereich);
spB.post(new Runnable(){
@Override
public void run(){
spielBh=spB.getMeasuredHeight();
spielBb=spB.getMeasuredWidth();
}
});
这是我使用GlobalLayoutListener的代码:
private void zurechtruecken() {
int i=24;
int n=1;
mView = findViewById(R.id.spielbereich);
mView.getViewTreeObserver().addOnGlobalLayoutListener(
new OnGlobalLayoutListener(){
@Override
public void onGlobalLayout() {
mView.getViewTreeObserver().removeGlobalOnLayoutListener(this);
spielBh=mView.getHeight();
spielBb=mView.getWidth();
Log.i("!",Integer.toString(spielBh));
Log.i("!",Integer.toString(spielBb));
}
});
越过“removeGlobalLayoutListener(this)”。(已弃用)
测量帧布局
可能很重要感谢您的帮助!! Botti560
答案 0 :(得分:1)
我之前也遇到过这样的麻烦。如果所有其他方法都失败了,请在您自己的类中扩展FrameLayout,并在onMeasure方法中获取高度/宽度值。例如:
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
int height = MeasureSpec.getSize(heightMeasureSpec);
}
很容易将它放在XML布局中,例如:
<com.yourdomain.yourappname.FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" > ...