我有一個垂直LinearLayout
與3 Buttons
垂直對齊一個在另一個之下。在每個按鈕之間,我設置了一個LinearLayout
,最初的可見性爲GONE
。點擊第一個按鈕後,其下面的LinearLayout
更改爲VISIBLE
,並且我在該佈局中定義的列表視圖進入視圖,而其餘2 Buttons
仍保留附加到LinearLayout
。按鈕移出視圖 - android
問題是,如果LinearLayout
t(我已經使用java代碼添加)中的列表視圖太大,那麼第一個下面的2 Buttons
就會出現。剩下的是第一個按鈕下面的佈局。
我希望2 Buttons
綁定到視圖。任何幫助將不勝感激。謝謝。
這裏是我的佈局:
LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="350dp"
android:layout_height="match_parent"
android:orientation="vertical" >
<Button
android:id="@+id/buttonContact"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Contacts"
android:background="@drawable/button_style"
android:textColor="#E6E6E6"/>
<LinearLayout
android:id="@+id/layoutContact"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:visibility="gone">
</LinearLayout>
<Button
android:id="@+id/buttonLog"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Call Logs"
android:background="@drawable/button_style" />
<LinearLayout
android:id="@+id/layoutLog"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:visibility="gone" >
</LinearLayout>
<Button
android:id="@+id/buttonVm"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Voicemail"
android:background="@drawable/button_style"/>
<LinearLayout
android:id="@+id/layoutVm"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:visibility="gone">
</LinearLayout>
</LinearLayout>
請把你的XML佈局代碼,以便它會很容易讓大家瞭解你的問題。 – 2012-07-16 11:04:33
否no listview不會在scrollview內工作 – AkashG 2012-07-16 11:04:45
給線性佈局的高度作爲包裝內容 – AkashG 2012-07-16 11:05:10