mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 19:38:08 +00:00
Conflicts: AndroidManifest.xml build.xml src/org/linphone/DialerActivity.java src/org/linphone/IncallActivity.java src/org/linphone/LinphoneManager.java src/org/linphone/LinphoneService.java src/org/linphone/LinphoneSimpleListener.java src/org/linphone/LinphoneUtils.java src/org/linphone/VideoCallActivity.java src/org/linphone/core/LinphoneCallImpl.java src/org/linphone/core/LinphoneCoreImpl.java
57 lines
No EOL
2 KiB
XML
57 lines
No EOL
2 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/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_all_calls"
|
|
android:id="@+id/allCalls"
|
|
android:src="@drawable/history_all"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"/>
|
|
|
|
<ImageView
|
|
android:contentDescription="@string/content_description_missed_calls"
|
|
android:id="@+id/missedCalls"
|
|
android:src="@drawable/history_missed"
|
|
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/history_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/ok"
|
|
android:visibility="gone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<ListView
|
|
android:id="@+id/historyList"
|
|
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> |