为什么带有重量的textview在文本换行时具有无效高度?

时间:2014-08-21 14:23:38

标签: java android textview android-xml android-wrap-content

我有一个对话框,它有一个布局xml。控件垂直对齐,在一个“行”中有一个textview和一个搜索栏。 Textview有weight=1,搜索栏有weight=2

现在的问题是,如果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.....

1 个答案:

答案 0 :(得分:0)

好的,我想我有解决方案。

ScrollView宽度和高度以及水平LinearLayout宽度设置 match_parent

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >

  <LinearLayout 
    android:id="@+id/dialog_settings_layout_main"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:minWidth="240dp"
    android:padding="10dp"
    android:orientation="vertical" >

我试图重现它,一切正常,直到我用ScrollView包装布局,我在开始时就错过了。然后我有完全相同的问题,调整提到的值解决了它。

<强>更新

要使其在Dialog中工作,请使用AlertDialog.Builder

创建一个
AlertDialog.Builder builder = new AlertDialog.Builder(this);
View view = getLayoutInflater().inflate(R.layout.dialog_layout, null);
builder.setView(view);
AlertDialog dialog = builder.create();

dialog.show();