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/contact_adapter_row.xml

28 lines
1.0 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- See the file "LICENSE" for the full license governing this code. -->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="@android:drawable/list_selector_background"
android:padding="4dip"
android:paddingRight="6dip"
android:orientation="horizontal">
<!-- picture thumbnail -->
<ImageView android:id="@android:id/icon"
android:layout_width="40dip"
android:layout_height="40dip"
android:gravity="center"
android:layout_marginRight="5dip"
android:scaleType="fitCenter" />
<!-- person or tag name -->
<TextView android:id="@android:id/text1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
style="@android:attr/dropDownItemStyle"
android:textAppearance="@android:attr/textAppearanceLargeInverse"
android:textSize="20sp"/>
</LinearLayout>