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.
38 lines
1.3 KiB
XML
38 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="10dip"
|
|
android:paddingBottom="10dip"
|
|
android:paddingLeft="0dip"
|
|
android:paddingRight="0dip"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal" >
|
|
|
|
<com.todoroo.astrid.ui.CheckableImageView
|
|
android:id="@+id/completeBox"
|
|
android:layout_width="45dip"
|
|
android:layout_height="fill_parent"
|
|
android:layout_marginRight="5dip"
|
|
android:layout_marginLeft="5dip"
|
|
android:gravity="center"
|
|
android:padding="8dip"
|
|
android:src="@drawable/btn_check" />
|
|
|
|
<com.todoroo.astrid.ui.ErrorCatchingEditText
|
|
android:id="@+id/title"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="100"
|
|
android:autoText="true"
|
|
android:background="@drawable/edit_title_background"
|
|
android:capitalize="sentences"
|
|
android:freezesText="true"
|
|
android:hint="@string/TEA_title_hint"
|
|
android:inputType="textMultiLine"
|
|
android:paddingLeft="5dip"
|
|
android:scrollbars="vertical"
|
|
android:text=""
|
|
android:textColor="@android:color/black" />
|
|
|
|
</LinearLayout> |