線形レイアウトに 2 つのボタンを並べて (右/左に) 配置したいのですが、適切な場所に配置できません。
明確にするために:フィルボックスを互いに重ねて配置したいのですが、下部のボタンを並べて配置します。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/LinearLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
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" >
<EditText
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="49dp"
android:hint="@string/FN"
android:inputType="textPersonName"
android:textAppearance="?android:attr/textAppearanceMedium" />
<EditText
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="49dp"
android:hint="@string/LN"
android:textAppearance="?android:attr/textAppearanceMedium" />
<EditText
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="49dp"
android:hint="@string/PN"
android:textAppearance="?android:attr/textAppearanceMedium" />
<EditText
android:id="@+id/textView4"
android:layout_width="wrap_content"
android:layout_height="49dp"
android:hint="@string/EA"
android:textAppearance="?android:attr/textAppearanceMedium" />
<EditText
android:id="@+id/textView5"
android:layout_width="wrap_content"
android:layout_height="49dp"
android:hint="@string/REEA"
android:textAppearance="?android:attr/textAppearanceMedium" />
<EditText
android:id="@+id/textView6"
android:layout_width="wrap_content"
android:layout_height="49dp"
android:hint="@string/User"
android:textAppearance="?android:attr/textAppearanceMedium" />
<EditText
android:id="@+id/textView7"
android:layout_width="wrap_content"
android:layout_height="49dp"
android:hint="@string/Pw"
android:textAppearance="?android:attr/textAppearanceMedium" />
<TextView
android:id="@+id/textView8"
android:layout_width="wrap_content"
android:layout_height="49dp"
android:text="@string/Gender"
android:textAppearance="?android:attr/textAppearanceMedium" />
<TextView
android:id="@+id/textView9"
android:layout_width="wrap_content"
android:layout_height="49dp"
android:text="@string/Country"
android:textAppearance="?android:attr/textAppearanceMedium" />
<Button
android:id="@+id/button1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/clear" />
<Button
android:id="@+id/button2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/submit" />
より理解できるようにコードを編集しました。
問題を解決するために私が見つけた唯一のことは、layout_weight を同じに設定することでしたが、それらは互いに重なり合っているだけです。
ありがとう。