mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-18 11:58:09 +00:00
66 lines
No EOL
2.1 KiB
XML
66 lines
No EOL
2.1 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="@color/colorH"
|
|
android:orientation="vertical" >
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/top_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="60dp"
|
|
android:layout_gravity="top"
|
|
android:background="@color/colorF">
|
|
|
|
<ImageView
|
|
android:id="@+id/new_discussion"
|
|
android:src="@drawable/chat_add"
|
|
android:background="@drawable/toolbar_button"
|
|
android:contentDescription="@string/content_description_new_discussion"
|
|
android:layout_width="70dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_alignParentLeft="true"
|
|
android:padding="15dp"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/back_in_call"
|
|
android:src="@drawable/call_back"
|
|
android:background="@drawable/toolbar_button"
|
|
android:layout_width="70dp"
|
|
android:layout_height="match_parent"
|
|
android:padding="15dp"
|
|
android:visibility="gone"
|
|
android:layout_toRightOf="@+id/new_discussion"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/edit"
|
|
android:src="@drawable/edit_list_button"
|
|
android:background="@drawable/toolbar_button"
|
|
android:contentDescription="@string/content_description_edit"
|
|
android:layout_width="70dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_alignParentRight="true"
|
|
android:padding="15dp"/>
|
|
</RelativeLayout>
|
|
|
|
<include layout="@layout/edit_list"/>
|
|
|
|
<ListView
|
|
android:id="@+id/chatList"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:divider="@color/colorE"
|
|
android:cacheColorHint="@color/transparent"
|
|
android:dividerHeight="1dp" />
|
|
|
|
<TextView
|
|
android:id="@+id/noChatHistory"
|
|
android:visibility="gone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"
|
|
android:text="@string/no_chat_history"
|
|
android:textColor="@color/colorB"
|
|
android:textAppearance="@android:style/TextAppearance.Large"/>
|
|
|
|
</LinearLayout> |