118 lines
4.2 KiB
Plaintext
118 lines
4.2 KiB
Plaintext
|
<?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"
|
||
|
android:background="#BFDDFF">
|
||
|
|
||
|
<RelativeLayout
|
||
|
android:id="@+id/relayout"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:background="@drawable/home_tonghua_background"
|
||
|
android:layout_marginBottom="12dp"
|
||
|
android:layout_above="@+id/home_btn_guaduan"
|
||
|
android:layout_centerHorizontal="true">
|
||
|
<RelativeLayout
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_centerInParent="true"
|
||
|
android:id="@+id/relativeLayout">
|
||
|
|
||
|
|
||
|
<RelativeLayout
|
||
|
android:id="@+id/rlyout"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content">
|
||
|
<TextView
|
||
|
android:id="@+id/guaduan_name"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="李丽华"
|
||
|
android:textSize="25sp"
|
||
|
android:textColor="#ffffff"/>
|
||
|
<TextView
|
||
|
android:layout_toRightOf="@+id/guaduan_name"
|
||
|
android:id="@+id/guaduan_guanxi"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="(关系)"
|
||
|
android:textSize="25sp"
|
||
|
android:textColor="#ffffff"
|
||
|
/>
|
||
|
</RelativeLayout>
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/guaduan_phone"
|
||
|
android:paddingTop="15dp"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="15188888888"
|
||
|
android:textSize="18sp"
|
||
|
android:textColor="#ffffff"
|
||
|
android:layout_below="@+id/rlyout"
|
||
|
android:layout_centerHorizontal="true"
|
||
|
/>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/lin2"
|
||
|
android:paddingTop="10dp"
|
||
|
android:layout_below="@+id/guaduan_phone"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="horizontal"
|
||
|
android:paddingLeft="20dp">
|
||
|
<Button
|
||
|
android:layout_width="13dp"
|
||
|
android:layout_height="13dp"
|
||
|
android:background="@drawable/guaduan_yuan"/>
|
||
|
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/guaduan_tonghua"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text=" 通话中"
|
||
|
android:textColor="#ffffff"
|
||
|
android:textSize="20sp" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
<Chronometer
|
||
|
android:paddingTop="10dp"
|
||
|
android:id="@+id/timer"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_below="@+id/lin2"
|
||
|
android:layout_centerHorizontal="true"
|
||
|
android:format="%s"
|
||
|
android:textColor="#ffffff"
|
||
|
android:textSize="20sp"/>
|
||
|
</RelativeLayout>
|
||
|
|
||
|
|
||
|
</RelativeLayout>
|
||
|
|
||
|
|
||
|
|
||
|
<View
|
||
|
android:id="@+id/view"
|
||
|
android:layout_below="@+id/relayout"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="15dp"
|
||
|
android:background="@android:color/transparent" />
|
||
|
|
||
|
<Button
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:background="@drawable/btn_guaduan_selector"
|
||
|
android:text="挂断"
|
||
|
android:textSize="22sp"
|
||
|
android:textColor="#ffffff"
|
||
|
android:id="@+id/home_btn_guaduan"
|
||
|
android:gravity="center"
|
||
|
android:layout_alignParentBottom="true"
|
||
|
android:layout_centerHorizontal="true"
|
||
|
android:layout_marginBottom="16dp" />
|
||
|
|
||
|
|
||
|
|
||
|
</RelativeLayout>
|