mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-19 12:38:07 +00:00
79 lines
2.3 KiB
XML
79 lines
2.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/colorG"
|
|
android:orientation="vertical" >
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/top_bar"
|
|
android:background="@color/colorG"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="50dp"
|
|
android:layout_gravity="top">
|
|
|
|
<ImageView
|
|
android:id="@+id/all_calls"
|
|
android:src="@drawable/history_all_button"
|
|
android:contentDescription="@string/content_description_all_calls"
|
|
android:padding="12dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/missed_calls"
|
|
android:src="@drawable/history_missed_button"
|
|
android:contentDescription="@string/content_description_missed_calls"
|
|
android:padding="12dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_toRightOf="@+id/all_calls"
|
|
android:layout_toEndOf="@+id/all_calls"/>r
|
|
|
|
<ImageView
|
|
android:id="@+id/edit"
|
|
android:src="@drawable/edit_list_button"
|
|
android:contentDescription="@string/content_description_edit"
|
|
android:layout_width="70dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_alignParentRight="true"
|
|
android:padding="12dp"/>
|
|
|
|
<View
|
|
android:background="@color/colorF"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
<include layout="@layout/edit_list"/>
|
|
|
|
<ListView
|
|
android:id="@+id/history_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:divider="@color/colorF"
|
|
android:cacheColorHint="@color/transparent"
|
|
android:dividerHeight="1dp" />
|
|
|
|
<TextView
|
|
android:id="@+id/no_call_history"
|
|
android:text="@string/no_call_history"
|
|
style="@style/font2"
|
|
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/font2"
|
|
android:visibility="gone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center"/>
|
|
|
|
</LinearLayout>
|