habitica-android/Habitica/res/layout/setup_customization_item.xml

26 lines
1.1 KiB
XML
Raw Normal View History

2017-03-30 07:59:53 +00:00
<?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="match_parent"
xmlns:tools="http://schemas.android.com/tools"
android:gravity="center_vertical"
2017-03-30 12:02:37 +00:00
android:paddingLeft="12dp"
android:paddingRight="12dp"
2017-03-30 07:59:53 +00:00
tools:background="@color/brand_200">
<ImageView
android:id="@+id/imageView"
android:layout_width="@dimen/setup_customization_size"
android:layout_height="@dimen/setup_customization_size"
android:background="@drawable/setup_customization_bg"
tools:src="@drawable/creator_slim_shirt_black"
android:scaleType="center"
/>
<TextView
android:id="@+id/textView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
tools:text="Slim"
android:layout_marginLeft="8dp"
android:textColor="@color/white_50_alpha"
android:textSize="16sp"/>
</LinearLayout>