利用可能なすべての水平幅を埋めたいEditTextがありますが、幅は200dpを超えてはなりません
これにより、EditText は任意の画面サイズに適応し、大きな画面でも見栄えがよくなります (大きな画面では水平方向に引き伸ばすと見栄えがよくありません)。
Androidでこれを行う方法は?
私はそれを見てmaxWidth=200dp
、layoutWidth=fill_parent
一緒に働きません:
<EditText android:id="@+id/oldpassword"
android:hint="@string/youroldpassword"
android:inputType="textpassword"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:maxWidth="250dp" />
maxWidth
とlayoutWidth=fill_parent
が一緒に機能しない場合、そのmaxWidth
意味は何ですか?
つまり、EditBox の幅が動的に変更されない場合、何が必要maxWidth
になるでしょうか?