問題は、TextView と EditText がありますが、それらを同じ「レベル」に配置するにはどうすればよいですか?
http://postimage.org/image/o9l17a3zv/
ご覧のとおり、「ユーザー名」を EditText の同じレベルに配置したいのですが...
ここに私のコード:
<TextView
android:id="@+id/account_creation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/account_creation"
android:textSize="20sp"
android:textStyle="bold" />
<!-- Username -->
<TextView
android:id="@+id/username_registration"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@id/account_creation"
android:layout_toLeftOf="@+id/username_new_account"
android:text="@string/user_text"
android:textSize="15sp" />
<EditText
android:id="@+id/username_new_account"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/account_creation"
android:layout_alignParentRight="true"
android:ems="10"
android:hint="@string/user_editext" >
<requestFocus />
</EditText>
両方に同じ「高さ」の値を付けることを考えていましたが、それが正しい/より良い方法かどうかはわかりません...