如何更正布局以显示按钮?

时间:2013-12-07 19:54:49

标签: android android-layout

我使用以下布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:layout_width="match_parent"
              android:layout_height="wrap_content"
              android:gravity="center"
              android:orientation="vertical"
              android:padding="10dp">

        <TextView
            android:id="@+id/wizard6_title"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:paddingBottom="10dp"
            android:scrollbars="vertical"
            android:text="@string/wizard6_title"
            android:textColor="#0088cc"
            android:textSize="20sp"
            android:textStyle="bold" />
    <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_marginTop="0dp"
            android:orientation="vertical"
            android:layout_weight="1">
        <TextView
            android:id="@+id/wizard6_text1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="fill_horizontal"
            android:scrollbars="vertical"
            android:text="@string/wizard6_text1"
            android:textSize="18sp" />
        <Button
                android:id="@+id/wizard6_btn_file"
                android:layout_height="wrap_content"
                android:layout_width="match_parent"
                android:text="@string/wizard6_btn_file" />
    </LinearLayout>
    <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginTop="10dp"
            android:layout_marginBottom="10dp">
        <Button
                android:id="@+id/wizard6_btn_back"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:text="@string/wizard_back" />
        <Button
                android:id="@+id/wizard6_btn_next"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:text="@string/wizard_next" />
    </LinearLayout>
</LinearLayout>

wizard6_text1文字有可滚动(mTextView5.setMovementMethod(new ScrollingMovementMethod())),但在小屏幕上占用剩余空格,结果中不显示wizard6_btn_file。我该如何解决?

1 个答案:

答案 0 :(得分:1)

任何时候你都遇到这种麻烦,可能是因为你没有设置布局权重。 Android默认使用0,这意味着占用所有需要的空间。尝试使用大量文本添加到textview:

android:layout_weight="1"

希望它有所帮助!