16 lines
566 B
XML
16 lines
566 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<android.support.v7.widget.GridLayout
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:grid="http://schemas.android.com/apk/res-auto"
|
||
|
android:id="@+id/grid"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="match_parent"
|
||
|
android:horizontalSpacing="1dp"
|
||
|
android:verticalSpacing="1dp"
|
||
|
android:background="@color/dashboard_background"
|
||
|
grid:orientation="horizontal"
|
||
|
grid:alignmentMode="alignBounds"
|
||
|
grid:columnCount="3">
|
||
|
|
||
|
|
||
|
</android.support.v7.widget.GridLayout>
|