mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-28 17:19:19 +00:00
108 lines
3.7 KiB
XML
108 lines
3.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:background="@color/colorG"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/top_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="70dp"
|
|
android:background="@color/colorF"
|
|
android:orientation="horizontal">
|
|
|
|
<View
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0.2"/>
|
|
|
|
<TextView
|
|
android:id="@+id/menu_name"
|
|
style="@style/font22"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0.4"
|
|
android:gravity="center"
|
|
android:padding="15dp"
|
|
android:singleLine="true"
|
|
android:text="@string/about"/>
|
|
|
|
<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="15dp"
|
|
android:src="@drawable/dialer_back"/>
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:background="@color/colorE"
|
|
android:orientation="horizontal"
|
|
android:layout_weight="1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_gravity="center">
|
|
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:gravity="center"
|
|
android:layout_gravity="center">
|
|
|
|
<ImageView
|
|
android:src="@drawable/linphone_logo"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="60dp"
|
|
android:layout_gravity="center"/>
|
|
|
|
<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:orientation="vertical"
|
|
android:layout_weight="1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
android:layout_gravity="center">
|
|
|
|
<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:src="@drawable/logo_orange"
|
|
android:layout_width="60dp"
|
|
android:layout_height="60dp"
|
|
android:layout_margin="30dp"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_alignParentRight="true" android:layout_gravity="right"/>
|
|
|
|
</LinearLayout>
|