gpt4 book ai didi

android - 如何获取LinearLayout的高度

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:51:05 24 4
gpt4 key购买 nike

我有一个 LinearLayout 将高度设置为 match_parent,如下所示:

<LinearLayout
android:id="@+id/list_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

我想得到这个LinearLayout的高度。
我使用了下面的代码:

LinearLayout ll_list = (LinearLayout)findViewById(R.id.list_layout);
int h = ll_list.getHeight();

但它返回 null。
我能怎么做?

最佳答案

首先:您的LinearLayout id 是left_layout,而不是list_layout

此外,如果尚未绘制,ll_list.getHeight() 将返回 0(以及 ll_list.getWidth())。

解决方案是在布局 View 后获取高度:

ll_list.post(new Runnable(){
public void run(){
int height = ll_list.getHeight();
}
});

并确保您的 ll_listfinal

关于android - 如何获取LinearLayout的高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11964499/

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