This repository has been archived on 2025-04-28. You can view files and clone it, but cannot push or open issues or pull requests.
ScaleApp/res/layout/instructions_main.xml
2013-08-26 23:01:18 -04:00

66 lines
2.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:background="#444444"
android:orientation="vertical"
android:padding="10dp" >
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:layout_margin="1dp"
android:background="@android:color/darker_gray">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_margin="20dp">
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:src="@drawable/instructions_1" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/step_1" />
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:src="@drawable/instructions_2" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/step_2" />
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:src="@drawable/instructions_3" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/step_3" />
<Button
android:id="@+id/dismiss"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Dismiss" />
</LinearLayout>
</ScrollView>
</LinearLayout>