mirror of
https://github.com/commons-app/apps-android-commons.git
synced 2025-10-27 04:43:54 +01:00
80 lines
No EOL
2.4 KiB
XML
80 lines
No EOL
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:gravity="center"
|
|
android:layout_marginLeft="12dp"
|
|
android:layout_marginRight="12dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
>
|
|
|
|
<ImageView
|
|
android:src="@drawable/ic_launcher"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
/>
|
|
|
|
<TextView
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content"
|
|
android:text="@string/app_name"
|
|
style="?android:textAppearanceLarge"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/about_version"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/about_license"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="16dp"
|
|
style="?android:textAppearanceSmall"
|
|
android:gravity="center"
|
|
android:text="@string/about_license"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/about_improve"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
style="?android:textAppearanceSmall"
|
|
android:gravity="center"
|
|
android:text="@string/about_improve"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/about_privacy_policy"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="16dp"
|
|
style="?android:textAppearanceSmall"
|
|
android:gravity="center"
|
|
android:text="@string/about_privacy_policy"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/about_credits"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="16dp"
|
|
style="?android:textAppearanceSmall"
|
|
android:gravity="center"
|
|
android:text="@string/about_credits"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/about_uploads_to"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="32dp"
|
|
style="?android:textAppearanceSmall"
|
|
android:gravity="center"
|
|
android:alpha="0.2"
|
|
/>
|
|
|
|
</LinearLayout> |