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.
121 lines
4.5 KiB
XML
121 lines
4.5 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:paddingLeft="4dip"
|
|
android:paddingRight="4dip"
|
|
android:background="@drawable/astrid_com_gradient"
|
|
android:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:id="@+id/intro"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:layout_alignParentLeft="true"
|
|
android:textSize="16sp"
|
|
android:paddingTop="20dip"
|
|
android:textColor="#ffffff"
|
|
android:text="@string/actfm_ALA_body" />
|
|
|
|
<TextView
|
|
android:id="@+id/error"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:textColor="#ff0000"
|
|
android:textSize="16sp"
|
|
android:textStyle="bold" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:orientation="horizontal" >
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="50"
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
android:id="@+id/logo"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="110dip"
|
|
android:scaleType="fitCenter"
|
|
android:paddingLeft="20dip"
|
|
android:paddingRight="20dip"
|
|
android:paddingBottom="10dip"
|
|
android:src="@drawable/astrid_com_logo"
|
|
android:layout_gravity="center"
|
|
android:layout_weight="1" />
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
android:id="@+id/LinearLayout1"
|
|
android:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="50"
|
|
android:gravity="center_vertical"
|
|
android:paddingTop="5dip" >
|
|
|
|
<Button
|
|
android:id="@+id/gg_login"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="45dip"
|
|
android:layout_marginLeft="15dip"
|
|
android:layout_marginRight="15dip"
|
|
android:drawableLeft="@drawable/google"
|
|
android:paddingLeft="20dip"
|
|
android:paddingRight="20dip"
|
|
android:text="@string/actfm_ALA_gg_login"
|
|
android:textSize="12sp"
|
|
android:layout_gravity="center_horizontal" />
|
|
|
|
<com.facebook.android.LoginButton
|
|
android:id="@+id/fb_login"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="45dip"
|
|
android:layout_marginLeft="15dip"
|
|
android:layout_marginRight="15dip"
|
|
android:drawableLeft="@drawable/facebook"
|
|
android:paddingLeft="20dip"
|
|
android:paddingRight="20dip"
|
|
android:text="@string/actfm_ALA_fb_login"
|
|
android:textSize="12sp"
|
|
android:layout_gravity="center_horizontal" />
|
|
|
|
<Button
|
|
android:id="@+id/pw_login"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="45dp"
|
|
android:paddingLeft="17dip"
|
|
android:paddingRight="20dip"
|
|
android:layout_marginLeft="15dip"
|
|
android:layout_marginRight="15dip"
|
|
android:drawableLeft="@drawable/notif_astrid"
|
|
android:textSize="12sp"
|
|
android:text="@string/welcome_login_pw"
|
|
android:layout_gravity="center_horizontal" />
|
|
|
|
<TextView
|
|
android:id="@+id/tos"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="35dip"
|
|
android:layout_above="@id/gg_login"
|
|
android:gravity="center"
|
|
android:paddingLeft="20dip"
|
|
android:paddingRight="20dip"
|
|
android:textSize="12.5sp"
|
|
android:textColor="#ffffff" />
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |