mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-18 03:48:08 +00:00
58 lines
No EOL
1.6 KiB
XML
58 lines
No EOL
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:background="@color/colorG"
|
|
android:layout_height="60dp"
|
|
android:layout_width="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<View
|
|
android:background="@color/colorF"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"/>
|
|
|
|
<LinearLayout
|
|
android:padding="5dp"
|
|
android:gravity="center_vertical"
|
|
android:layout_margin="2dp"
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
<ImageView
|
|
android:id="@+id/contact_picture"
|
|
android:src="@drawable/avatar"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"/>
|
|
|
|
<TextView
|
|
android:id="@+id/contact_name"
|
|
style="@style/font9"
|
|
android:singleLine="true"
|
|
android:layout_width="0dip"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:gravity="center_vertical|left"
|
|
android:paddingLeft="20dp"
|
|
android:paddingRight="10dp"/>
|
|
|
|
<Chronometer
|
|
android:id="@+id/call_timer"
|
|
style="@style/font12"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="10dp"
|
|
android:paddingRight="20dp"
|
|
android:gravity="center_vertical|right"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/call_pause"
|
|
android:src="@drawable/pause_small_default"
|
|
android:contentDescription="@string/content_description_pause"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:gravity="center_vertical"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |