如何在API 21之前支持`layout_columnWeight`和`layout_rowWeight`?

时间:2016-10-10 08:43:56

标签: android android-gridlayout

我使用以下网格布局layout_columnWeightlayout_rowWeight将我的视图集中在网格单元格中。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
>

<GridLayout
    android:id="@+id/container_grid"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:columnCount="2"
    android:rowCount="3"
    android:orientation="horizontal">

    <View
        android:id="@+id/view_red"
        android:layout_height="100dp"
        android:layout_width="100dp"
        android:layout_columnWeight="1"
        android:layout_rowWeight="1"
        android:layout_gravity="center"
        android:background="#ff0000"
        android:layout_row="0"
        android:layout_column="0" />

    <View
        android:id="@+id/view_green"
        android:layout_height="100dp"
        android:layout_width="100dp"
        android:layout_columnWeight="1"
        android:layout_rowWeight="1"
        android:layout_gravity="center"
        android:background="#00ff00"
        android:layout_row="0"
        android:layout_column="0" />

    <View
        android:id="@+id/view_blue"
        android:layout_height="100dp"
        android:layout_width="100dp"
        android:layout_columnWeight="1"
        android:layout_rowWeight="1"
        android:layout_gravity="center"
        android:background="#0000ff"
        android:layout_row="0"
        android:layout_column="0" />
    </GridLayout>
</RelativeLayout>

但它们只适用于v21及以上版本。如何在API 21之前支持layout_columnWeightlayout_rowWeight功能?

3 个答案:

答案 0 :(得分:20)

支持库中的GridLayout版本是向后兼容的,并支持权重,如下所述:

https://developer.android.com/reference/android/support/v7/widget/GridLayout.html

因此您只需要将compile 'com.android.support:gridlayout-v7:23.1.1'添加到build.gradle文件中,然后使用支持gridlayout;)

在布局xml文件中使用如下所示(android.support.v7.widget.GridLayout):

<android.support.v7.widget.GridLayout
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/container_grid"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:columnCount="2"
    app:rowCount="3"
    app:orientation="horizontal">

    <View
        android:id="@+id/view_red"
        android:layout_height="100dp"
        android:layout_width="100dp"
        app:layout_columnWeight="1"
        app:layout_rowWeight="1"
        app:layout_gravity="center"
        android:background="#ff0000"
        app:layout_row="0"
        app:layout_column="0" />
</android.support.v7.widget.GridLayout>

答案 1 :(得分:1)

对于像我这样的初学者,@ Amir Ziarati的答案很明确。 您需要在 build.gradle(Module:app)

中添加此行
implementation 'com.android.support:gridlayout-v7:26.1.0'

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
implementation 'com.android.support:gridlayout-v7:26.1.0'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.1'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1' 
}

然后使用

<android.support.v7.widget.GridLayout>
...</android.support.v7.widget.GridLayout>

答案 2 :(得分:1)

代替使用

android:layout_columnWeight="1"
android:layout_rowWeight="1"

使用:

app:layout_columnWeight="1"
app:layout_rowWeight="1"

这会有所帮助。