を使用して簡単なログイン インターフェイスを作成していますGridLayout
。2つEditText
がセルに収まるようにしてください。
これが問題のスクリーンショットです。
緑色の破線はGridLayout
境界を示し、青色の線はEditText
フィールドの境界を示します。ご覧のとおりEditText
、 は画面の制限を超えています。
これがxmlコードですEditText
<EditText
android:id="@+id/etEmail_loginFragment"
android:layout_width="wrap_content"
android:layout_height="40dp"
app:layout_column="1"
app:layout_gravity="fill_horizontal|center_vertical"
app:layout_row="0"
android:background="@android:color/white"
android:ems="10"
android:inputType="textEmailAddress"
android:textSize="14sp" />
layout_width 属性を変更しても問題は解決しません。Androidはその属性を無視しているようです。
どうすれば修正できますか?