标题太长时按钮的位置会发生变化

时间:2014-06-19 09:18:35

标签: android android-layout user-interface

我目前正在开展测验应用。有一个问题和四个可能的答案选项。每个答案选项都由一个按钮表示。四个按钮对齐为矩形。

问题:如果按钮标题太长,按钮位置稍微改变NS按钮向下滑动。

问题:此问题是否有解决方案?我不希望按钮改变它的位置。

XML代码

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/background" >

    <TextView
        android:id="@+id/tv_voc_trainer_question"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="44dp"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:gravity="center"
        android:text="This is my title!"
        android:textSize="20sp" />

    <LinearLayout
        android:id="@+id/ll_voc_trainer_first_answer_row"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/tv_voc_trainer_question"
        android:layout_marginTop="40dp"
        android:orientation="horizontal" >

        <Button
            android:id="@+id/bu_first_answer_possibility"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_margin="10dp"
            android:layout_weight="1"
            android:background="@drawable/blue_button"
            android:text="Answer 1" />

        <Button
            android:id="@+id/bu_second_answer_possibility"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_margin="10dp"
            android:layout_weight="1"
            android:background="@drawable/blue_button"
            android:text="Answer 2 is very long!" />
    </LinearLayout>

    <LinearLayout
        android:id="@+id/ll_voc_trainer_second_answer_row"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/ll_voc_trainer_first_answer_row"
        android:orientation="horizontal" >

        <Button
            android:id="@+id/bu_third_answer_possibility"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_margin="10dp"
            android:layout_weight="1"
            android:background="@drawable/blue_button"
            android:text="Answer 3" />

        <Button
            android:id="@+id/bu_fourth_answer_possibility"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_margin="10dp"
            android:layout_weight="1"
            android:background="@drawable/blue_button"
            android:text="Answer 4" />
    </LinearLayout>

    <ImageView
        android:id="@+id/img_trainer_answer"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/ll_voc_trainer_second_answer_row"
        android:layout_marginTop="25dp"
        android:layout_centerHorizontal="true"
        android:contentDescription="answer" />

</RelativeLayout>

此屏幕截图说明了该问题。按钮2的标题较长,因此其位置会自动更改。

Position of second button in first row changed due to caption

2 个答案:

答案 0 :(得分:2)

尝试在线性布局中使用它:

android:baselineAligned="false"

答案 1 :(得分:0)

Try this way,hope this will help you to solve your problem.

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/background"
    android:gravity="center"
    android:orientation="vertical"
    android:padding="10dp">

    <TextView
        android:id="@+id/tv_voc_trainer_question"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="This is my title!"
        android:textSize="20sp" />

    <LinearLayout
        android:id="@+id/ll_voc_trainer_first_answer_row"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="40dp"
        android:gravity="center">

        <Button
            android:id="@+id/bu_first_answer_possibility"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:background="@drawable/blue_button"
            android:gravity="center"
            android:text="Answer 1" />

        <Button
            android:id="@+id/bu_second_answer_possibility"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_marginLeft="10dp"
            android:layout_weight="1"
            android:background="@drawable/blue_button"
            android:gravity="center"
            android:text="Answer 2 is very long!" />
    </LinearLayout>

    <LinearLayout
        android:id="@+id/ll_voc_trainer_second_answer_row"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="25dp"
        android:gravity="center">

        <Button
            android:id="@+id/bu_third_answer_possibility"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:background="@drawable/blue_button"
            android:gravity="center"
            android:text="Answer 3" />

        <Button
            android:id="@+id/bu_fourth_answer_possibility"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_marginLeft="10dp"
            android:layout_weight="1"
            android:background="@drawable/blue_button"
            android:gravity="center"
            android:text="Answer 4" />
    </LinearLayout>

    <ImageView
        android:id="@+id/img_trainer_answer"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="25dp"
        android:contentDescription="answer" />

</LinearLayout>