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.
40 lines
1.3 KiB
XML
40 lines
1.3 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">
|
|
<!-- Assigned to -->
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="50dip"
|
|
android:gravity="center_vertical">
|
|
|
|
<ImageView
|
|
style="@style/EditRowImage"
|
|
android:src="@drawable/icn_edit_who"/>
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="15dip"
|
|
style="@style/TextAppearance.GEN_EditLabel"
|
|
android:text="@string/actfm_EPA_assign_label" />
|
|
<TextView
|
|
android:id="@+id/assigned_display"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:layout_weight="1"
|
|
android:gravity="center_vertical|right"
|
|
style="@style/TextAppearance.EditRowDisplay" />
|
|
<include layout="@layout/task_edit_arrow"/>
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="1px"
|
|
android:padding="5dip"
|
|
style="@style/TEA_Separator" />
|
|
|
|
</LinearLayout>
|