Button
画面の下部に aと a multiLineを揃えたいと思いEditText
ます。それらは両方とも隣り合っている必要があります。これらは両方とも現在LinearLayout
. どうすればいいですか?
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity"
android:orientation="vertical"
android:weightSum="2">
<LinearLayout
android:id="@+id/linearlayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="#F5F5F5"
android:orientation="horizontal"
>
<TextView
android:id="@+id/Text1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="To:"
android:textSize="15sp" />
<EditText
android:id="@+id/To"
android:layout_width="153dp"
android:layout_height="fill_parent"
android:layout_weight="0.86"
android:inputType="phone" />
<Button
android:id="@+id/Browse"
android:layout_width="50dp"
android:layout_height="50dp"
android:text="+" />
</LinearLayout>
<ListView
android:id="@+id/listview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/linearlayout" />
<!--
<TextView
android:id="@+id/awain"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/linearlayout"
android:text="Listview"
/> -->
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
>
<LinearLayout
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/Message"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.75"
android:inputType="textCapSentences|textMultiLine"
android:maxLength="2000"
android:maxLines="5" />
<Button
android:id="@+id/send"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.25"
android:minWidth="150dp"
android:text="Send"
android:layout_marginBottom="0dp"
android:layout_alignParentBottom="true">
</Button>
</LinearLayout>
</RelativeLayout>
</RelativeLayout>