20 lines
765 B
XML
20 lines
765 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<ImageView
|
|
android:layout_marginTop="32dp"
|
|
android:src="@drawable/screen_5"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"
|
|
android:scaleType="fitCenter" />
|
|
<Button
|
|
android:id="@+id/button_close"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="Let's Go!"
|
|
android:theme="@style/PrimaryButton"
|
|
android:textColor="@android:color/white" />
|
|
</LinearLayout> |