使用fill_parent
時,maxWidth
不起作用。maxWidth不適用於fill_parent
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout android:layout_width="fill_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<EditText android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxWidth="50dip"/>
</LinearLayout>
</LinearLayout>
謝謝!如何填寫我的EditText屏幕的所有寬度但不是500dip?例如,某個屏幕的分辨率<500. –
這看起來很愚蠢,但它起作用:添加'minWidth'並將「min」和「max」都設置爲'500dp'。 – Sam
@Sam - 這似乎不適用於我,EditText仍然填充整個屏幕除邊緣。你能詳細說明一下嗎? – katzenhut