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"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:paddingStart="6dp"
|
|
|
|
|
android:paddingEnd="6dp"
|
2019-08-07 08:29:58 +00:00
|
|
|
tools:background="?colorPrimaryOffset">
|
2017-03-30 07:59:53 +00:00
|
|
|
<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"
|
2017-04-07 13:56:23 +00:00
|
|
|
tools:src="@drawable/creator_chair_black"
|
2017-03-30 07:59:53 +00:00
|
|
|
android:scaleType="center"
|
|
|
|
|
/>
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/textView"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
tools:text="Slim"
|
2020-09-17 11:47:02 +00:00
|
|
|
android:layout_marginStart="6dp"
|
2017-03-30 07:59:53 +00:00
|
|
|
android:textColor="@color/white_50_alpha"
|
|
|
|
|
android:textSize="16sp"/>
|
|
|
|
|
</LinearLayout>
|