mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 19:38:08 +00:00
49 lines
No EOL
1.7 KiB
XML
49 lines
No EOL
1.7 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:background="@drawable/numpad_background"
|
|
android:orientation="vertical" >
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0.87"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:contentDescription="@string/content_description_new_discussion"
|
|
android:id="@+id/newDiscussion"
|
|
android:src="@drawable/chat_new"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"/>
|
|
|
|
<ImageView
|
|
android:contentDescription="@string/content_description_edit"
|
|
android:id="@+id/edit"
|
|
android:src="@drawable/chat_edit"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"/>
|
|
|
|
<ImageView
|
|
android:contentDescription="@string/content_description_validate"
|
|
android:id="@+id/ok"
|
|
android:src="@drawable/chat_ok"
|
|
android:visibility="gone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<ListView
|
|
android:id="@+id/chatList"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:divider="@android:color/darker_gray"
|
|
android:dividerHeight="1dp"
|
|
android:layout_weight="0.13" />
|
|
|
|
</LinearLayout> |