mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-30 17:44:07 +00:00
To expand with full Organic Maps and Maps.ME commits history run: git remote add om-historic [om-historic.git repo url] git fetch --tags om-historic git replace squashed-history historic-commits
48 lines
1.6 KiB
XML
48 lines
1.6 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"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:gravity="center">
|
|
|
|
<ImageView
|
|
android:id="@+id/iv__logo"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="0dp"
|
|
android:contentDescription="@null"
|
|
app:srcCompat="@drawable/splash"
|
|
android:layout_weight="1000"
|
|
android:layout_margin="@dimen/margin_double"/>
|
|
|
|
<LinearLayout
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingBottom="@dimen/margin_double">
|
|
|
|
<TextView
|
|
android:id="@+id/tv__app_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="@dimen/margin_eighth"
|
|
android:text="@string/app_name"
|
|
android:gravity="center_horizontal"
|
|
android:textAppearance="@style/MwmTextAppearance.Title.Splash" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv__splash_subtitle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/splash_subtitle"
|
|
android:layout_marginStart="@dimen/margin_double"
|
|
android:layout_marginEnd="@dimen/margin_double"
|
|
android:gravity="center_horizontal"
|
|
android:textAppearance="@style/MwmTextAppearance.Toolbar" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|