35 lines
1.4 KiB
XML
35 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:gravity="center"
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<ImageView
|
|
android:id="@+id/imgProcessLogo"
|
|
android:layout_width="@dimen/diy_process_step_logo"
|
|
android:layout_height="@dimen/diy_process_step_logo"
|
|
android:scaleType="centerCrop"/>
|
|
<LinearLayout
|
|
android:gravity="bottom"
|
|
android:orientation="vertical"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/diy_step_img_margin">
|
|
<TextView
|
|
android:textSize="@dimen/theme_36sp"
|
|
android:textStyle="bold"
|
|
android:textColor="@color/theme_txt"
|
|
android:id="@+id/tv_position"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="01"/>
|
|
<TextView
|
|
android:textSize="@dimen/theme_18sp"
|
|
android:textColor="@color/theme_txt"
|
|
android:id="@+id/tvProcessDesc"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/title_diy_build"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|