的高度我有一個的LinearLayout組高度match_parent如下:如何獲得的LinearLayout
<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。
我該怎麼辦?
除非你將有一個後臺任務優化的位圖(或類似的東西)顯示在屏幕上之前,我真的不能在任何時候任何需要這個值的東西。如果您可以告訴我們關於您的應用程序的更多信息,我們可以爲您提供更好的設計方案。 – Budius 2012-08-15 08:26:31
http://stackoverflow.com/a/41705445/5664529檢查一下,它可能會幫助你。 – 2017-01-17 20:00:05