请查看以下 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(附加)
如您所见,文本框高度出乎意料地太大了。实际上我需要的是调整文本框宽度以正确适应应用程序,提供足够的输入空间(如果我没有做任何事情,文本框的宽度会显得非常小)。我是安卓新手。请帮忙!