나는 간단한 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
발생하지만 때 같은 일 장치에서 실행).
IT는 EditText
실제로 전체 화면 너비보다는 오프 화면을가는 이유입니다 GridLayout
셀의 폭 것으로 보인다. 이 문제를 일으키는 레이아웃에서 무엇이 잘못 되었습니까?
http://stackoverflow.com/questions/30845440/edittext-getting-out-of-gridlayout이 부분을 참조하십시오. – KrishnaJ