mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-17 11:28:06 +00:00
30 lines
No EOL
1,009 B
XML
30 lines
No EOL
1,009 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
android:id="@+id/about_settings"
|
|
android:visibility="gone"
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_weight="0.2"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
|
|
<ImageView
|
|
android:id="@+id/image"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:adjustViewBounds="true"
|
|
android:contentDescription="@string/content_description_about"
|
|
android:scaleType="fitXY"
|
|
android:src="@drawable/about_settings" />
|
|
|
|
<TextView
|
|
android:id="@+id/text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_alignBottom="@id/image"
|
|
android:paddingBottom="10dp"
|
|
android:textColor="@drawable/text_color"
|
|
android:text="@string/button_about"
|
|
android:textSize="12sp" />
|
|
|
|
</RelativeLayout> |