mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-19 20:48:08 +00:00
Conflicts: AndroidManifest.xml res/drawable/status_level.xml res/layout/call.xml res/layout/chat.xml res/layout/chat_bubble_outgoing.xml res/layout/contact_control_row.xml res/layout/search_contact_cell.xml res/values/strings.xml src/org/linphone/CallActivity.java src/org/linphone/ChatFragment.java src/org/linphone/ContactDetailsFragment.java src/org/linphone/LinphoneService.java
55 lines
No EOL
1.6 KiB
XML
55 lines
No EOL
1.6 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">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/numeroOrAddress"
|
|
style="@style/font2"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="marquee"
|
|
android:marqueeRepeatLimit="marquee_forever"
|
|
android:scrollHorizontally="true"
|
|
android:fadingEdge="horizontal"
|
|
android:singleLine="true"
|
|
android:gravity="center" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="5dp"
|
|
android:gravity="center"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:id="@+id/contact_call"
|
|
android:src="@drawable/call_start_button"
|
|
android:contentDescription="@string/content_description_dial_back"
|
|
android:layout_width="60dp"
|
|
android:layout_height="60dp"
|
|
android:layout_margin="10dp"
|
|
android:adjustViewBounds="true"
|
|
android:layout_centerInParent="true"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/contact_chat"
|
|
android:src="@drawable/chat_start_button"
|
|
android:contentDescription="@string/content_description_chat"
|
|
android:layout_width="60dp"
|
|
android:layout_height="60dp"
|
|
android:layout_margin="10dp"
|
|
android:adjustViewBounds="true"
|
|
android:layout_centerInParent="true" />
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
</TableRow> |