mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-18 03:48: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
52 lines
No EOL
1.6 KiB
XML
52 lines
No EOL
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:background="@drawable/background"
|
|
android:layout_height="match_parent">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/fragmentContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:paddingBottom="75dp"
|
|
android:padding="20dp"
|
|
android:orientation="horizontal" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/menu"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="90dp"
|
|
android:layout_alignParentBottom="true"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:contentDescription="@string/content_description_cancel"
|
|
android:id="@+id/setup_cancel"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:src="@drawable/setup_cancel"
|
|
android:scaleType="fitXY"
|
|
android:layout_weight="0.5"/>
|
|
|
|
<ImageView
|
|
android:contentDescription="@string/content_description_next"
|
|
android:id="@+id/setup_next"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:src="@drawable/setup_next"
|
|
android:scaleType="fitXY"
|
|
android:layout_weight="0.5"/>
|
|
|
|
<ImageView
|
|
android:contentDescription="@string/content_description_back"
|
|
android:id="@+id/setup_back"
|
|
android:visibility="gone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:src="@drawable/setup_back"
|
|
android:scaleType="fitXY"
|
|
android:layout_weight="0.5"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout> |