blob: 0b53f0a03c94eeea9a182b3cb831140a216f07f6 [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_centerVertical="true"
android:layout_toLeftOf="@+id/num_participants" >
<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:ellipsize="marquee"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="true"
android:singleLine="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" />
<com.savoirfairelinux.sflphone.views.CounterTextView
android:id="@+id/call_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/call_title"
android:layout_toRightOf="@+id/call_status"
android:paddingLeft="10dp"
android:text="call_time"
android:textSize="12sp" />
</RelativeLayout>
<TextView
android:id="@+id/num_participants"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_alignParentRight="true"
android:layout_centerHorizontal="true"
android:background="@drawable/call_button"
android:gravity="center"
android:text="0"
android:textSize="30sp" />
<!-- <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:src="@drawable/up_arrow" /> -->
</RelativeLayout>