В основном я хочу добавить textView, spinner и кнопку в этом относительном макете.Выглядит как:
---- TextView ----
----- прядильщик ----
------------button -
Проблема в том, что кнопка внизу справа растянута, высота кнопки занимает все остальное пространство.
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/surveyLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="20dp"
android:layout_marginTop="20dp"
android:layout_alignParentTop="true"
android:text="@string/selectSurvey"
android:textColor="@android:color/darker_gray"
android:id="@+id/hasSurveyLabel"
/>
<Spinner
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/surveySpinner"
android:layout_below="@+id/hasSurveyLabel"
/>
<Button
android:layout_width="wrap_content"
android:layout_height="30dp"
android:id="@+id/startButton"
android:text="@string/start"
**android:layout_below="@+id/surveySpinner"**
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
android:paddingTop="10dp"
android:paddingLeft="30dp"
android:paddingRight="30dp"
/>
Похожеэто из-за layout_below, когда мы используем layout_below, кнопку под вращателем, она должна быть чуть ниже нее, без пробела, если вы не определили ее.
Как мы можем решить эту проблему?
Я ожидаю,Поместите кнопку под спиннер и внизу экрана.
Я боролся с этим уже несколько дней, какая помощь?Спасибо.