mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-18 20:08:08 +00:00
30 lines
No EOL
878 B
XML
30 lines
No EOL
878 B
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:padding="20dp"
|
|
android:layout_above="@id/menu"
|
|
android:orientation="horizontal" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/menu"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:orientation="horizontal">
|
|
|
|
<include layout="@layout/setup_cancel_button" />
|
|
|
|
<include layout="@layout/setup_next_button" />
|
|
|
|
<include layout="@layout/setup_back_button" />
|
|
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout> |