我有這樣的佈局定製對話框:的Android定製對話框按下按鈕關閉屏幕
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/mylayout">
<LinearLayout
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<TextView ... />
<TextView .../>
</LinearLayout>
<ScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/title">
<LinearLayout ...>
<TextView ...
android:text="lots of text........" />
<TextView .../>
</LinearLayout>
</ScrollView
<RelativeLayout ...
android:layout_below="@+id/scrollView">
<Button ...>
<Button ...>
</RelativeLayout>
</RelativeLayout>
我的問題是,滾動型的是,當在滾動視圖太多的文字中,下面的按鈕被壓出對話框。我已經能夠通過使用android:layout_alignParentBottom =「true」將包含按鈕的RelativeLayout錨定到底部來阻止它,但是當scrollview中的文本較少時,我會將整個對話框拉伸到屏幕底部,並且我不想那樣。
我怎樣才能得到一個佈局是這樣的:
[SOME TEXT]
[Scrollable region]
[Buttons]
嘗試修復主要佈局在像300dip –
的高度我並不想解決的主要佈局的高度,因爲它需要在不同屏幕尺寸和方向 –