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.
tasks/astrid/res/layout/control_set_title.xml

60 lines
1.9 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:layout_weight="100">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dip"
android:layout_marginBottom="14dip">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="100"
android:background="@drawable/edit_title_background">
<ImageView
android:id="@+id/importance"
android:paddingTop="1dip"
android:paddingBottom="1dip"
android:layout_marginLeft="1dip"
android:layout_width="4dip"
android:layout_height="fill_parent"
android:layout_weight="1"/>
<com.todoroo.astrid.ui.ErrorCatchingEditText
android:id="@+id/title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="100"
android:hint="@string/TEA_title_hint"
android:autoText="true"
android:paddingTop="8dip"
android:paddingBottom="8dip"
android:paddingLeft="5dip"
android:singleLine="false"
android:scrollbars="vertical"
android:text=""
android:background="@android:color/transparent"
android:capitalize="sentences"
android:freezesText="true"/>
</LinearLayout>
<Button
android:id="@+id/timer_button"
android:layout_width="35dip"
android:layout_height="35dip"
android:layout_marginLeft="10dip"
android:layout_gravity="center_vertical"
android:layout_weight="1"/>
</LinearLayout>
<View
android:layout_width="fill_parent"
android:layout_height="1px"
android:padding="5dip"
style="@style/TEA_Separator" />
</LinearLayout>