Linear Layout のすべての EditText フィールドを 1 行に設定したいのですが、どのようにすればよいでしょうか?
詳細なコード:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
style="@style/LoginTextFieldTheme"
>
<EditText
android:id="@+id/textPassword"
android:layout_weight="1"
android:layout_width="0dp"
android:inputType="textPassword"
android:hint="password"
/>
<EditText
android:id="@+id/textPasswordConfirm"
android:layout_weight="1"
android:layout_width="0dp"
android:inputType="textPassword"
android:hint="password confirm"
/>
</LinearLayout>
EditText を 1 行にできるように、LoginTextFieldTheme で何かを指定したいと考えています。
オンラインで検索したところ、「スタイル」はViewGroupの子要素には適用されず、「テーマ」はアクティビティにのみ適用できます。
ViewGroup に適用されるスタイルに「buttonStyle」を適用するようなものがありますが、TextEdit をどうするかについての正確な/完全なドキュメントが見つかりません。
どうもありがとう。