mirror of https://github.com/tasks/tasks
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.6 KiB
XML
48 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
** Copyright (c) 2012 Todoroo Inc
|
|
**
|
|
** See the file "LICENSE" for the full license governing this code.
|
|
-->
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:orientation="vertical"
|
|
android:background="#d0d0d0">
|
|
|
|
<TextView
|
|
android:id="@+id/welcome_walkthrough_title"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="27dp"
|
|
android:gravity="center_horizontal"
|
|
android:text="Hello"
|
|
android:textColor="#444444"
|
|
android:textSize="40dip"
|
|
android:textStyle="bold"
|
|
android:shadowRadius="2"
|
|
android:shadowDy="1"
|
|
android:shadowColor="@android:color/white" />
|
|
<ImageView
|
|
android:id="@+id/welcome_walkthrough_image"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="1"
|
|
android:src="@drawable/welcome_walkthrough_1"
|
|
android:scaleType="fitCenter"/>
|
|
|
|
<TextView
|
|
android:id="@+id/welcome_walkthrough_body"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="75dp"
|
|
android:gravity="center_horizontal"
|
|
android:text="Hello"
|
|
android:textColor="#444444"
|
|
android:textSize="20dip"
|
|
android:textStyle="bold"
|
|
android:shadowRadius="2"
|
|
android:shadowDy="1"
|
|
android:shadowColor="@android:color/white" />
|
|
|
|
</LinearLayout> |