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.
65 lines
2.1 KiB
XML
65 lines
2.1 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" android:background="@drawable/white"
|
|
android:gravity="center_horizontal">
|
|
|
|
<com.facebook.android.LoginButton
|
|
android:id="@+id/login"
|
|
android:src="@drawable/login_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="30dp"
|
|
/>
|
|
|
|
<TextView android:id="@+id/txt"
|
|
android:text="@string/hello"
|
|
android:textColor="@drawable/black"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
/>
|
|
|
|
<Button android:id="@+id/uploadButton"
|
|
android:text="@string/upload"
|
|
android:visibility="invisible"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingRight="20dp"
|
|
android:paddingLeft="20dp"
|
|
android:layout_margin="20dp"
|
|
/>
|
|
|
|
<Button android:id="@+id/requestButton"
|
|
android:text="@string/request"
|
|
android:visibility="invisible"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingRight="20dp"
|
|
android:paddingLeft="20dp"
|
|
android:layout_margin="20dp"
|
|
/>
|
|
|
|
|
|
<Button android:id="@+id/postButton"
|
|
android:text="@string/post"
|
|
android:visibility="invisible"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingRight="20dp"
|
|
android:paddingLeft="20dp"
|
|
android:layout_margin="20dp"
|
|
/>
|
|
|
|
<Button android:id="@+id/deletePostButton"
|
|
android:text="@string/delete"
|
|
android:visibility="invisible"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingRight="20dp"
|
|
android:paddingLeft="20dp"
|
|
android:layout_margin="20dp"
|
|
/>
|
|
|
|
|
|
|
|
</LinearLayout> |