Как поддерживать `layout_columnWeight` и `layout_rowWeight` в pre API 21?

#android #android-gridlayout

#Android #android-gridlayout

Вопрос:

Я использую приведенный ниже макет сетки с 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>
  

Но они предназначены только для версии 21 и выше. Как поддерживать layout_columnWeight и layout_rowWeight использовать в pre API 21?

Ответ №1:

версия GridLayout в библиотеке поддержки обратно совместима и поддерживает веса, как указано здесь:

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

итак, вам просто нужно добавить compile 'com.android.support:gridlayout-v7:23.1.1' в свой файл build.gradle и вместо этого использовать support gridlayout 😉

используйте это, как показано ниже ( android.support.v7.widget.GridLayout ) в вашем XML-файле макета:

 <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. Я получил неправильную ошибку namspace для различных атрибутов в xml: (

2. вы добавили библиотеку в файл build.gradle?

3. Добавлено compile 'com.android.support:gridlayout-v7:24.2.1' .

4. только что обновил макет, который я написал. что-то не так с пространством имен некоторых атрибутов 😉

5. Не работает: ( Вместо 100x100dp он увеличит весь.

Ответ №2:

Для новичков, таких как я, ответ @Amir Ziarati уместен. вам нужно добавить эту строку в свой build.gradle (модуль: приложение)

 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>
  

Ответ №3:

Вместо использования

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

Использовать:

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

Это поможет.

Комментарии:

1. Пожалуйста, объясните, почему предпочесть это «подходу поддержки» в других ответах.

2. приложение: layout_columnWeight) не найдено