mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 19:38:08 +00:00
37 lines
No EOL
1.3 KiB
XML
37 lines
No EOL
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center_vertical"
|
|
android:paddingTop="10dp"
|
|
android:paddingBottom="10dp"
|
|
android:background="@drawable/list_selector"
|
|
android:orientation="horizontal" >
|
|
|
|
<TextView
|
|
android:id="@+id/sipUri"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="0.1"
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
android:textColor="@android:color/black"
|
|
android:layout_marginLeft="10dp" />
|
|
|
|
<ImageView
|
|
android:contentDescription="@string/content_description_detail"
|
|
android:id="@+id/detail"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0.9"
|
|
android:src="@drawable/list_detail" />
|
|
|
|
<ImageView
|
|
android:contentDescription="@string/content_description_delete"
|
|
android:id="@+id/delete"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0.9"
|
|
android:visibility="gone"
|
|
android:src="@drawable/list_delete" />
|
|
|
|
</LinearLayout> |