mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 19:38:08 +00:00
42 lines
No EOL
1.4 KiB
XML
42 lines
No EOL
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:linphone="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="75dp"
|
|
android:layout_margin="2dp"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:padding="10dp">
|
|
|
|
<TextView
|
|
android:id="@+id/contactNameOrNumber"
|
|
android:layout_width="0dip"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:gravity="center_vertical|left"
|
|
android:paddingLeft="20dp"
|
|
android:paddingRight="10dp"
|
|
android:textColor="@android:color/white"
|
|
android:textSize="22dp" />
|
|
|
|
<ImageView
|
|
android:contentDescription="@string/content_description_pause"
|
|
android:id="@+id/callStatus"
|
|
android:layout_width="30dp"
|
|
android:layout_height="30dp"
|
|
android:gravity="center_vertical"
|
|
android:scaleType="fitCenter"
|
|
android:adjustViewBounds="true"
|
|
android:src="@drawable/pause" />
|
|
|
|
<Chronometer
|
|
android:id="@+id/callTimer"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:paddingLeft="10dp"
|
|
android:paddingRight="20dp"
|
|
android:gravity="center_vertical|right"
|
|
android:textColor="@android:color/white"
|
|
android:textSize="22dp" />
|
|
|
|
</TableRow> |