24 lines
743 B
XML
24 lines
743 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="70dp"
|
||
|
android:layout_height="70dp"
|
||
|
android:orientation="vertical"
|
||
|
>
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/icon"
|
||
|
android:layout_width="44dp"
|
||
|
android:layout_height="44dp"
|
||
|
android:layout_gravity="center_horizontal"
|
||
|
/>
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/name"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_gravity="center"
|
||
|
android:layout_marginTop="4dp"
|
||
|
android:textColor="@color/gray1"
|
||
|
android:textSize="14sp"
|
||
|
/>
|
||
|
</LinearLayout>
|