blob: f6d56e9dd077a33eeefbe3e03838708880dfd028 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/item_call_selector" >
<RelativeLayout
android:id="@+id/call_entry"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_toLeftOf="@+id/expand_button"
android:clickable="true" >
<TextView
android:id="@+id/call_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:text="call_title"
android:textSize="20sp" />
<TextView
android:id="@+id/call_status"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/call_title"
android:text="call_status"
android:textSize="12sp" />
<TextView
android:id="@+id/call_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@+id/call_status"
android:layout_below="@+id/call_title"
android:text="call_time"
android:textSize="12sp" />
</RelativeLayout>
<ImageButton
android:id="@+id/expand_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:background="@null"
android:focusable="false"
android:focusableInTouchMode="false"
android:src="@drawable/up_arrow" />
</RelativeLayout>