У меня есть следующий формат XML.Добавление макета в нижней части экрана
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
android:padding="6dip" >
<TextView
android:id="@+id/itemNumber"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentTop="true"
android:layout_marginRight="6dip"
android:textSize="50px"/>
<TextView
android:id="@+id/secondLine"
android:layout_width="fill_parent"
android:layout_height="26dip"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_toRightOf="@id/itemNumber"
android:ellipsize="marquee"
android:singleLine="true"
android:textSize="12sp" />
<TextView
android:id="@+id/firstLine"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_above="@id/secondLine"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_alignWithParentIfMissing="true"
android:layout_toRightOf="@id/itemNumber"
android:gravity="center_vertical"
android:textSize="16sp" />
<RelativeLayout
android:id="@+id/InnerRelativeLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" >
<Button
android:text="Submit"
android:id="@+id/Button"
android:layout_alignParentRight="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</Button>
<EditText
android:id="@+id/EditText"
android:layout_width="fill_parent"
android:layout_toLeftOf="@id/Button"
android:layout_height="wrap_content">
</EditText>
</RelativeLayout>
</RelativeLayout>
Что мне нужно сделать, это сделать Редактирование текста & кнопки появляться в нижней части экрана. Я использую 3 текстовых вида для отображения в виде списка. Поэтому я могу выбрать один из списка и ввести его в текст редактирования, чтобы отправить значение.
Но я не могу заставить их появляться внизу. Как я могу это сделать?
Закрыли вы второй RelativeLayout? – RafaelC
Это может помочь! http://stackoverflow.com/questions/14779688/put-buttons-at-bottom-of-screen-with-linearlayout – stonecompass
@ RafaelCardoso Извините, да, у меня есть. Пропустил его при копировании/вставке – k9yosh