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.
46 lines
1.5 KiB
XML
46 lines
1.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:orientation="vertical"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/importance_container"
|
|
android:orientation="horizontal"
|
|
android:paddingTop="5dip"
|
|
android:paddingBottom="5dip"
|
|
android:gravity="center_vertical"
|
|
android:layout_width="fill_parent"
|
|
android:paddingLeft="10dip"
|
|
android:paddingRight="10dip"
|
|
android:layout_height="50dip">
|
|
<ImageView android:id="@+id/display_row_icon"
|
|
android:layout_marginRight="10dip"
|
|
android:layout_width="20dip"
|
|
android:layout_height="20dip"
|
|
android:scaleType="fitCenter"
|
|
android:src="@drawable/tea_icn_priority_gray"/>
|
|
<TextView
|
|
android:id="@+id/display_row_edit"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="left"
|
|
android:text="@string/TEA_importance_label"
|
|
style="@style/TextAppearance.EditRowDisplay"
|
|
android:textColor="@color/task_edit_deadline_gray"/>
|
|
</LinearLayout>
|
|
|
|
<View
|
|
android:id="@+id/TEA_Separator"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="1px"
|
|
style="@style/TEA_Separator" />
|
|
|
|
</LinearLayout>
|