blob: 3a6ea37489453c89d5b934a910d717383ff696c6 [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="match_parent" >
<TextView
android:id="@+id/calllength_txt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:text="0:00"
android:textAppearance="?android:attr/textAppearanceMedium" />
<TextView
android:id="@+id/callstatus_txt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBaseline="@+id/calllength_txt"
android:layout_alignBottom="@+id/calllength_txt"
android:layout_alignParentRight="true"
android:layout_marginRight="10dp"
android:text="Calling"
android:textAppearance="?android:attr/textAppearanceMedium" />
<TextView
android:id="@+id/contact_name_txt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/calllength_txt"
android:layout_margin="10dp"
android:text="Caller Name"
android:textAppearance="?android:attr/textAppearanceLarge" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:orientation="horizontal" >
<Button
android:id="@+id/end_btn"
android:layout_width="match_parent"
android:layout_height="120dp"
android:layout_margin="10dp"
android:layout_weight="1"
android:background="@drawable/hangup_button"
android:text="End" />
<Button
android:id="@+id/suspend_btn"
android:layout_width="match_parent"
android:layout_height="120dp"
android:layout_margin="10dp"
android:layout_weight="1"
android:background="@drawable/hold_button"
android:text="Suspend" />
</LinearLayout>
</RelativeLayout>