24 lines
758 B
XML
24 lines
758 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="70dp"
|
|
android:gravity="center_horizontal"
|
|
android:orientation="vertical"
|
|
>
|
|
|
|
<ImageView
|
|
android:id="@+id/icon"
|
|
android:layout_width="30dp"
|
|
android:layout_height="30dp"
|
|
android:layout_marginBottom="3dp"
|
|
android:layout_marginTop="11dp"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/textColor2"
|
|
android:textSize="13sp"
|
|
/>
|
|
</LinearLayout> |