31 Ekim 2017 Salı

GridLayout

Tanımlama
Şöyle yaparız
<?xml version="1.0" encoding="utf-8"?>
<GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  android:layout_width="match_parent"
  android:layout_height="match_parent">
  ...
</GridLayout>
layout_columnSpan
İki sütuna yayılan bileşen için şöyle yaparız.
<TextView
  android:layout_columnWeight="70"
  android:gravity="center"
  android:textAlignment="center"
  android:text="TextView_1"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_row="0"
  android:layout_column="1"
  android:layout_columnSpan="2"
  android:id="@+id/row_name"
  android:minHeight="32dp"
/>
layout_rowSpan
İki satıra yayılan bileşen için şöyle yaparız.
<ImageView
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_row="0"
  android:layout_column="0"
  android:layout_rowSpan="2"
  app:srcCompat="@drawable/ic_home_black_24dp"
  android:id="@+id/row_image"
  android:minHeight="64dp"
  android:minWidth="64dp"/>

Hiç yorum yok:

Yorum Gönder