我有一个对话框,其中有一个布局 xml。控件是垂直对齐的,在一个“行”中有一个文本视图和一个搜索栏。Textview 有weight=1
,seekbar 有weight=2
。
现在的问题是如果textview放不下就换行了,但是textview的高度没有调整,第二行不可见。
布局xml:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<LinearLayout
android:id="@+id/dialog_settings_layout_main"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:minWidth="240dp"
android:padding="10dp"
android:orientation="vertical" >
....other controls.....
<LinearLayout
android:id="@+id/dialog_settings_layout_volume"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >
<TextView
android:id="@+id/textView_dialog_settings"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="aaaaaaaaa bbbbbbbbbb cccccccccc"
android:layout_gravity="center_vertical"
android:paddingRight="20dp"
android:textAppearance="?android:attr/textAppearanceMedium" />
<SeekBar
android:id="@+id/seekbar_dialog_settings"
android:layout_width="0px"
android:layout_weight="2"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:max="8"
android:progress="1" />
</LinearLayout>
....other controls.....