mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
61 lines
No EOL
2.1 KiB
XML
61 lines
No EOL
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<TableRow xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="2dp"
|
|
android:gravity="center_vertical"
|
|
android:padding="10dp">
|
|
|
|
<TextView
|
|
android:id="@+id/numeroOrAddress"
|
|
android:lines="1"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:ellipsize="marquee"
|
|
android:marqueeRepeatLimit="marquee_forever"
|
|
android:scrollHorizontally="true"
|
|
android:fadingEdge="horizontal"
|
|
android:singleLine="true"
|
|
android:textColor="@color/text_contrast"
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
android:gravity="left" />
|
|
|
|
<ImageView
|
|
android:id="@+id/dial"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0.2"
|
|
android:contentDescription="@string/content_description_call"
|
|
android:gravity="right"
|
|
android:paddingLeft="5dp"
|
|
android:paddingRight="5dp"
|
|
android:scaleType="fitCenter"
|
|
android:src="@drawable/call_answer" />
|
|
|
|
<ImageView
|
|
android:id="@+id/start_chat"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0.2"
|
|
android:contentDescription="@string/content_description_chat"
|
|
android:gravity="right"
|
|
android:paddingLeft="5dp"
|
|
android:paddingRight="5dp"
|
|
android:scaleType="fitCenter"
|
|
android:src="@drawable/chat_icon_over" />
|
|
|
|
<ImageView
|
|
android:id="@+id/addFriend"
|
|
android:visibility="gone"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0.2"
|
|
android:contentDescription="@string/content_description_dial_back"
|
|
android:gravity="right"
|
|
android:paddingLeft="5dp"
|
|
android:paddingRight="5dp"
|
|
android:scaleType="fitCenter"
|
|
android:src="@drawable/friend_add" />
|
|
|
|
</TableRow> |