|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!--
|
|
|
|
Copyright (C) 2008 The Android Open Source Project
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:astrid="http://schemas.android.com/apk/res/com.timsu.astrid"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal" >
|
|
|
|
|
|
|
|
<com.todoroo.astrid.helper.AsyncImageView
|
|
|
|
android:id="@+id/icon"
|
|
|
|
android:layout_width="31dip"
|
|
|
|
android:layout_height="35dip"
|
|
|
|
android:layout_margin="5dip"
|
|
|
|
astrid:defaultSrc="@drawable/icn_default_person_image"
|
|
|
|
android:gravity="center"
|
|
|
|
android:scaleType="fitCenter" />
|
|
|
|
|
|
|
|
<com.todoroo.astrid.ui.ContactsAutoComplete
|
|
|
|
android:id="@+id/text1"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginLeft="5dip"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:background="#00000000"
|
|
|
|
android:hint="@string/actfm_person_hint"
|
|
|
|
style="@style/TextAppearance"
|
|
|
|
android:textCursorDrawable="@null"
|
|
|
|
android:textSize="15sp" />
|
|
|
|
|
|
|
|
<ImageButton
|
|
|
|
android:id="@+id/button1"
|
|
|
|
android:layout_width="32dip"
|
|
|
|
android:layout_height="32dip"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_margin="4dip"
|
|
|
|
android:background="@drawable/btn_dismiss" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:id="@+id/divider"
|
|
|
|
style="@style/TEA_Separator"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="1dip" />
|
|
|
|
|
|
|
|
</LinearLayout>
|