mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-18 20:08:08 +00:00
109 lines
3.7 KiB
XML
109 lines
3.7 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/colorB"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/top_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="50dp"
|
|
android:background="@color/colorB"
|
|
android:orientation="horizontal">
|
|
|
|
<View
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0.2"/>
|
|
|
|
<TextView
|
|
android:id="@+id/menu_name"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0.4"
|
|
android:gravity="center"
|
|
android:singleLine="true"
|
|
android:text="@string/about"
|
|
android:textColor="#ffffff"
|
|
android:textSize="20sp"/>
|
|
|
|
<ImageView
|
|
android:id="@+id/cancel"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0.2"
|
|
android:contentDescription="@string/content_description_dialer_back"
|
|
android:padding="10dp"
|
|
android:src="@drawable/footer_contacts"/>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="258dp"
|
|
android:layout_gravity="center"
|
|
android:layout_weight="1"
|
|
android:background="@color/colorB"
|
|
android:orientation="horizontal">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_weight="1"
|
|
android:gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<ImageView
|
|
android:layout_width="90dp"
|
|
android:layout_height="90dp"
|
|
android:layout_gravity="center"
|
|
android:src="@drawable/logo_secure_phone_big"/>
|
|
|
|
<TextView
|
|
style="@style/font14"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:paddingTop="5dp"
|
|
android:text="@string/app_name"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:layout_weight="1"
|
|
android:gravity="center"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/about_android_version"
|
|
style="@style/font17"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="left"
|
|
android:text="@string/about_version"/>
|
|
|
|
<TextView
|
|
android:id="@+id/about_liblinphone_version"
|
|
style="@style/font17"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="left"
|
|
android:text="@string/about_liblinphone_version"/>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
<ImageView
|
|
android:layout_width="60dp"
|
|
android:layout_height="60dp"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_gravity="right"
|
|
android:layout_margin="30dp"
|
|
android:src="@drawable/logo_orange"/>
|
|
|
|
</LinearLayout>
|