Gridlayout小部件屏幕外的Android

时间:2015-06-22 16:44:50

标签: android android-gridlayout

GridView我的结果如下:

Grid Layout with ImageButton out of Screen

如何设置布局以避免屏幕外小部件?

网格布局本身没问题,填满了屏幕,但孩子们没有和重叠。

这里是gridlayout的XML:

 <GridLayout
    android:layout_width="fill_parent"
    android:layout_height="match_parent"
    android:columnCount="4"
    android:rowCount="3">

    <ImageButton
        android:id="@+id/imageView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/circular"
        android:layout_row="0"
        android:layout_column="3"
        android:layout_rowSpan="3" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="New Text"
        android:id="@+id/textView4"
        android:layout_row="1"
        android:layout_column="0" />

    <EditText
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:inputType="numberDecimal"
        android:ems="10"
        android:id="@+id/editText"
        android:layout_row="1"
        android:layout_column="1" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="New Text"
        android:id="@+id/textView5"
        android:layout_row="1"
        android:layout_column="2" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="New Text"
        android:id="@+id/textView10"
        android:layout_row="2"
        android:layout_column="0" />

    <EditText
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:inputType="numberDecimal"
        android:ems="10"
        android:id="@+id/editText2"
        android:layout_row="2"
        android:layout_column="1" />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="New Text"
        android:id="@+id/textView11"
        android:layout_row="2"
        android:layout_column="2" />
</GridLayout>

0 个答案:

没有答案