18 lines
624 B
XML
18 lines
624 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:gravity="center"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<ImageView android:id="@+id/img"
|
||
|
android:layout_width="60dp"
|
||
|
android:layout_height="60dp"/>
|
||
|
|
||
|
<TextView android:id="@+id/text"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textColor="#ffb1b1b1"
|
||
|
android:layout_marginTop="7dp"
|
||
|
android:textSize="12sp"/>
|
||
|
</LinearLayout>
|