mirror of
https://github.com/cmclark00/mintris.git
synced 2025-05-21 21:55:20 +01:00
28 lines
No EOL
957 B
XML
28 lines
No EOL
957 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="16dp">
|
|
|
|
<TextView
|
|
android:id="@+id/available_skins_label"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="block skins"
|
|
android:textColor="@android:color/white"
|
|
android:textSize="24sp"
|
|
android:textStyle="bold"
|
|
android:fontFamily="sans-serif"
|
|
android:gravity="center"
|
|
android:layout_marginBottom="16dp" />
|
|
|
|
<GridLayout
|
|
android:id="@+id/skins_grid"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:columnCount="3"
|
|
android:alignmentMode="alignMargins"
|
|
android:useDefaultMargins="true" />
|
|
|
|
</LinearLayout> |