私はシンプルGridLayout
持って行く:IDEから下記(画像から分かるように、アンドロイドのGridLayout fill_horizontalはオフスクリーン
<GridLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:columnCount="2"
android:rowCount="1" >
<TextView
android:layout_column="0"
android:layout_row="0"
android:text="Label"/>
<EditText
android:inputType="text"
android:layout_column="1"
android:layout_row="0"
android:text="asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf asdf"
android:layout_gravity="fill_horizontal"/>
</GridLayout>
は、しかし、これは画面をオフに拡張するEditText
の原因となるが、それは時に同じことをデバイスで実行中)。
EditText
が実際に画面の幅いっぱいではなく、それはオフスクリーン起こっている理由ですGridLayout
セルの幅であることが表示されます。これを引き起こすためにレイアウトに何が間違っていますか?
http://stackoverflow.com/questions/30845440/edittext-getting-out-of-gridlayoutこれを参照 – KrishnaJ