gpt4 book ai didi

android - 为什么我的 FrameLayout 高度为 0?

转载 作者:行者123 更新时间:2023-11-29 15:24:22 25 4
gpt4 key购买 nike

我有一个 FrameLayout,包含各种叠加的 ImageView:

<FrameLayout
android:id="@+id/australia_frame"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:id="@+id/australia"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/map_australia"
/>
<ImageView
android:id="@+id/nsw"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/map_nsw"
android:visibility="invisible"
/>
<ImageView
android:id="@+id/victoria"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/map_victoria"
android:visibility="invisible"
/>
...etc...
</FrameLayout>

在我的代码中,我尝试渲染我的 FrameLayout:

final Dialog dialog = new Dialog((Context) parent);
dialog.setContentView(R.layout.dialog_region);

FrameLayout fl = (FrameLayout) dialog.findViewById(R.id.australia_frame);
final int height = fl.getHeight();
Validate.isTrue(height > 0);

我的代码崩溃了:

java.lang.IllegalArgumentException: The validated expression is false
at org.apache.commons.lang3.Validate.isTrue(Validate.java:180)

崩溃的行是 Validate.isTrue(height > 0);

为什么我的 FrameLayout 没有高度?有没有办法获得我的 FrameLayout 渲染的精确像素高度和宽度?

最佳答案

这可能对你有帮助

     FrameLayout target = (FrameLayout) dialog.findViewById(R.id.australia_frame);
target.post(new Runnable() {

@Override
public void run() {
int width = target.getWidth();
int height = width/2;
/*your code with width and height*/
}

});
}

关于android - 为什么我的 FrameLayout 高度为 0?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14516771/

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