mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-18 11:58:09 +00:00
53 lines
No EOL
1.5 KiB
XML
53 lines
No EOL
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/toolbar"
|
|
android:background="@color/button_addContact"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="60dp">
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/setup_back"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_alignParentLeft="true">
|
|
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="10dp"
|
|
android:layout_centerInParent="true"
|
|
android:contentDescription="@string/content_description_back"
|
|
android:src="@drawable/back" />
|
|
</RelativeLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/toolbar_text"
|
|
android:text="@string/setup_title"
|
|
android:textColor="@color/footer_select"
|
|
android:textSize="28sp"
|
|
android:textAllCaps="true"
|
|
android:textStyle="bold"
|
|
android:paddingLeft="10dp"
|
|
android:layout_centerInParent="true"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center_vertical"/>
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/setup_cancel"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_alignParentRight="true">
|
|
|
|
<ImageView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="10dp"
|
|
android:contentDescription="@string/content_description_dialer"
|
|
android:layout_centerInParent="true"
|
|
android:src="@drawable/dialer_back" />
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
</RelativeLayout> |