所以我搜索了所有的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
最佳答案
我以前也遇到过这样的麻烦。如果所有其他方法均失败,则在您自己的类中扩展FrameLayout并在onMeasure方法中获取height / width值。例:
@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" > ...
关于java - 即使在Runnable中,getHeight和getMeasuredHeight也会返回0,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/27342571/