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.
51 lines
2.0 KiB
XML
51 lines
2.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent">
|
|
|
|
<android.support.v4.view.ViewPager
|
|
android:id="@+id/pager"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"/>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:layout_alignParentBottom="true"
|
|
android:paddingTop="3dip"
|
|
android:paddingBottom="3dip"
|
|
android:background="#55000000"
|
|
android:gravity="center_vertical">
|
|
<com.viewpagerindicator.CirclePageIndicator
|
|
android:id="@+id/indicator"
|
|
android:padding="15dip"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="fill_parent"
|
|
android:background="#00000000"
|
|
style="@style/CustomCirclePageIndicator"/>
|
|
<TextView
|
|
android:id="@+id/next"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginRight="5dip"
|
|
android:text="@string/welcome_next"
|
|
android:textColor="#444444"
|
|
android:textSize="20dip"
|
|
android:textStyle="bold"
|
|
android:paddingRight="10dip"
|
|
android:shadowRadius="2"
|
|
android:shadowDy="1"
|
|
android:shadowColor="@android:color/white" />
|
|
</RelativeLayout>
|
|
</RelativeLayout>
|
|
</LinearLayout> |