| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@drawable/bgimg_step_05"
- android:gravity="bottom"
- android:orientation="vertical">
- <ImageView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentStart="true"
- android:layout_alignParentBottom="true"
- android:layout_marginStart="35dp"
- android:layout_marginBottom="17dp"
- app:srcCompat="@drawable/ic_bi_step_5_wh"/>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_alignParentStart="true"
- android:layout_alignParentBottom="true"
- android:layout_marginStart="35dp"
- android:layout_marginBottom="30dp"
- android:orientation="vertical">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_alignParentStart="true"
- android:layout_alignParentTop="true"
- android:layout_marginBottom="13dp"
- android:text="@string/tutorial_title_last"
- android:textColor="@color/CFFFFFF"
- android:textSize="30dp"/>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:lineSpacingExtra="5.8sp"
- android:text="@string/tutorial_title_last_message"
- android:textColor="@color/CFFFFFF"
- android:textSize="17dp"
- />
- </LinearLayout>
- <Button
- android:id="@+id/button_start_main"
- style="@style/WhiteButton"
- android:layout_width="113dp"
- android:layout_height="38dp"
- android:layout_marginStart="35dp"
- android:layout_marginBottom="39dp"
- android:text="시작하기"
- android:textColor="@color/C000000"/>
- </LinearLayout>
|