web-dev-qa-db-ja.com

API 21以前で `layout_columnWeight`と` layout_rowWeight`をサポートするにはどうすればよいですか?

以下のグリッドレイアウトをlayout_columnWeightおよびlayout_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以降のみを対象としています。サポート方法layout_columnWeightおよびlayout_rowWeight AP​​I 21以前の機能?

16
Elye

サポートライブラリ内のGridLayoutのバージョンは下位互換性があり、ここで説明するように重みをサポートします。

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

そのため、compile 'com.Android.support:gridlayout-v7:23.1.1'をbuild.gradleファイルに追加し、代わりにサポートグリッドレイアウトを使用する必要があります;)

レイアウト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>
22
Amir Ziarati

私のような初心者向け @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
Hawk Red

使用する代わりに

Android:layout_columnWeight="1"
Android:layout_rowWeight="1"

使用する:

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

これは役立ちます。

0
Haris Nabeel