mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-18 11:58:09 +00:00
113 lines
3.3 KiB
XML
113 lines
3.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:background="@color/colorH"
|
|
android:orientation="vertical" >
|
|
|
|
<LinearLayout
|
|
android:id="@+id/top_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="50dp"
|
|
android:background="@color/colorH"
|
|
android:orientation="horizontal">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0.2">
|
|
|
|
<ImageView
|
|
android:id="@+id/all_calls"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@drawable/toolbar_button"
|
|
android:contentDescription="@string/content_description_all_contacts"
|
|
android:src="@drawable/history_all"
|
|
/>
|
|
|
|
<ImageView
|
|
android:id="@+id/all_calls_select"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@drawable/toolbar_button"
|
|
android:contentDescription="@string/content_description_all_contacts"
|
|
android:src="@drawable/history_all_selected"
|
|
/>
|
|
</RelativeLayout>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0.2">
|
|
|
|
<ImageView
|
|
android:id="@+id/missed_calls"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@drawable/toolbar_button"
|
|
android:contentDescription="@string/content_description_linphone_contacts"
|
|
android:gravity="center"
|
|
android:src="@drawable/history_missed"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/missed_calls_select"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@drawable/toolbar_button"
|
|
android:contentDescription="@string/content_description_linphone_contacts"
|
|
android:gravity="center"
|
|
android:src="@drawable/history_missed_selected"/>
|
|
</RelativeLayout>
|
|
|
|
<View
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0.4"
|
|
android:background="@color/colorH"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/edit"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0.2"
|
|
android:background="@drawable/toolbar_button"
|
|
android:contentDescription="@string/content_description_edit_list"
|
|
android:src="@drawable/delete"/>
|
|
</LinearLayout>
|
|
|
|
<include layout="@layout/edit_list"/>
|
|
|
|
<View
|
|
android:id="@+id/view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="@color/colorE"/>
|
|
|
|
<ListView
|
|
android:id="@+id/history_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:cacheColorHint="@color/transparent"
|
|
android:divider="@color/colorE"
|
|
android:dividerHeight="1dp"/>
|
|
|
|
<TextView
|
|
android:id="@+id/no_call_history"
|
|
android:text="@string/no_call_history"
|
|
style="@style/font6"
|
|
android:visibility="gone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"/>
|
|
|
|
<TextView
|
|
android:id="@+id/no_missed_call_history"
|
|
android:text="@string/no_missed_call_history"
|
|
style="@style/font6"
|
|
android:visibility="gone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"/>
|
|
|
|
</LinearLayout>
|