我将 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。
我能怎么做?