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.
68 lines
2.5 KiB
XML
68 lines
2.5 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="@color/black">
|
|
<TextView
|
|
android:id="@+id/apiOutputLabel"
|
|
android:text="@string/api_response"
|
|
android:textColor="@color/white"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="3dp"
|
|
android:paddingLeft="3dp" />
|
|
<ScrollView
|
|
android:id="@+id/ScrollView01"
|
|
android:layout_height="140dp"
|
|
android:layout_width="fill_parent">
|
|
<TextView android:id="@+id/apiOutput"
|
|
android:textColor="@color/white"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="3dp"
|
|
android:paddingLeft="3dp"
|
|
android:background="@color/grey" />
|
|
</ScrollView>
|
|
<View
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="2dip"
|
|
android:background="@color/grey" />
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
<Button
|
|
android:id="@+id/view_post_button"
|
|
android:text="@string/view_post"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:padding="10dp" />
|
|
<Button
|
|
android:id="@+id/delete_post_button"
|
|
android:text="@string/delete_post"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:padding="10dp" />
|
|
</LinearLayout>
|
|
<View
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="2dip"
|
|
android:background="@color/grey" />
|
|
<TextView
|
|
android:id="@+id/tip_label"
|
|
android:text="@string/tip_label"
|
|
android:textColor="@color/white"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="3dp"
|
|
android:paddingLeft="3dp" />
|
|
<TextView
|
|
android:id="@+id/usefulTip"
|
|
android:text="@string/post_tip"
|
|
android:textColor="@color/white"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="5dp"
|
|
android:paddingLeft="3dp" />
|
|
</LinearLayout>
|