次の XML レイアウトをご覧ください。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<TextView
android:id="@+id/lblPassword"
android:text="@string/label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<EditText
android:id="@+id/pwdText"
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="1"
android:inputType="textPassword"
/>
<Button
android:text="@string/btnLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="showMessage"
/>
</LinearLayout>
これにより、次のGUIが生成されます(添付)
ご覧のとおり、テキスト ボックスの高さが予想外に大きすぎます。実際に必要なのは、アプリに適切に収まるようにテキストボックスの幅を調整し、入力するのに十分なスペースを提供することです (何もしないと、テキストボックスの幅が非常に小さく表示されます)。私はアンドロイドが初めてです。助けてください!