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.
141 lines
4.6 KiB
XML
141 lines
4.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/widget"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:background="@drawable/widget_frame">
|
|
|
|
<LinearLayout
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:paddingLeft="5dp"
|
|
android:paddingRight="5dp">
|
|
|
|
<TextView
|
|
android:id="@+id/widget_title"
|
|
android:layout_width="108dp"
|
|
android:layout_height="50dp"
|
|
android:layout_gravity="left"
|
|
android:textColor="#ffffff"
|
|
android:textSize="14sp"
|
|
android:textStyle="bold"
|
|
android:singleLine="true"
|
|
android:gravity="center"
|
|
android:ellipsize="start" />
|
|
|
|
<ImageButton
|
|
android:id="@+id/widget_button"
|
|
android:src="@drawable/button_plus"
|
|
android:layout_gravity="right"
|
|
android:layout_width="35dp"
|
|
android:layout_height="50dp"
|
|
android:background="#00000000" />
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout android:id="@+id/taskbody"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/task_1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:singleLine="true"
|
|
android:maxWidth="115dip"
|
|
android:text="@string/TWi_loading"
|
|
style="@style/TextAppearance.Widget"
|
|
android:layout_marginLeft="23dp"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/separator_1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:src="@drawable/separator"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="4dp"/>
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/task_2"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:singleLine="true"
|
|
android:maxWidth="115dip"
|
|
style="@style/TextAppearance.Widget"
|
|
android:layout_marginLeft="23dp"
|
|
android:layout_marginTop="4dp"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/separator_2"
|
|
android:layout_width="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:src="@drawable/separator"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="4dp"/>
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/task_3"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:singleLine="true"
|
|
android:maxWidth="115dip"
|
|
style="@style/TextAppearance.Widget"
|
|
android:layout_marginLeft="23dp"
|
|
android:layout_marginTop="4dp"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/separator_3"
|
|
android:layout_width="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:src="@drawable/separator"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="4dp"/>
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/task_4"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:singleLine="true"
|
|
android:maxWidth="115dip"
|
|
style="@style/TextAppearance.Widget"
|
|
android:layout_marginLeft="23dp"
|
|
android:layout_marginTop="4dp"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/separator_4"
|
|
android:layout_width="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:src="@drawable/separator"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="4dp"/>
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/task_5"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:singleLine="true"
|
|
android:maxWidth="115dip"
|
|
style="@style/TextAppearance.Widget"
|
|
android:layout_marginLeft="23dp"
|
|
android:layout_marginTop="4dp"/>
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|