网格布局无法正常工作

时间:2017-06-19 09:58:18

标签: android

我正在使用android studio 2.3.2,我的问题是,当我将gridlayout添加到我的应用程序时,我无法更改列数和行数也有一条消息说这个网格布局也没用我也是无法将任何图像添加到gridlayout的图像视图中。我已经尝试使用设计视图中的属性添加行和列,也使用xml在文本视图中添加行,但它不起作用,我也看不到任何网格线将imageview拖到gridlayout上。

1 个答案:

答案 0 :(得分:0)

使用支持lib中的android.support.v7.widget.GridLayout来管理android中的网格布局。

下方的小预览
<android.support.v7.widget.GridLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:fitsSystemWindows="true"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools"
tools:background="@drawable/bg_paper"
app:rowCount="4"
app:columnCount="3"
app:orientation="vertical"
android:layout_marginBottom="50dp">

<android.support.v7.widget.AppCompatImageView
    android:layout_width="0dp"
    android:layout_height="0dp"
    app:layout_columnSpan="2"
    app:layout_row="0"
    app:layout_column="0"
    app:layout_rowWeight="5"
    app:layout_columnWeight="1"
    app:layout_gravity="fill"
    android:scaleType="fitCenter"
    app:srcCompat="@drawable/img_onboarding_search" />
<TextView
    app:layout_row="1"
    app:layout_column="0"
    app:layout_rowWeight="1"
    app:layout_columnWeight="1"
    app:layout_gravity="fill"
    android:text="@string/onboarding_title_step_1"/>

<TextView
    app:layout_row="2"
    app:layout_column="0"
    app:layout_rowWeight="5"
    app:layout_columnWeight="1"
    app:layout_gravity="fill"
    android:text="@string/onboarding_message_step_1"/></android.support.v7.widget.GridLayout>