mirror of
https://github.com/OMGeeky/andors-trail.git
synced 2026-02-23 15:38:29 +01:00
61 lines
2.1 KiB
XML
61 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" >
|
|
|
|
<include layout="@layout/title_bg_sky_layout"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_centerInParent="true"
|
|
android:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:id="@+id/title_logo_placeholder_above"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="0" >
|
|
</TextView>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="0.4"
|
|
android:orientation="horizontal" >
|
|
|
|
<TextView
|
|
android:id="@+id/title_logo_placeholder_left"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0.2" >
|
|
</TextView>
|
|
|
|
<ImageView
|
|
android:id="@+id/title_logo"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="20sp"
|
|
android:layout_marginRight="20sp"
|
|
android:layout_marginTop="20sp"
|
|
android:layout_weight="0.6"
|
|
android:scaleType="fitCenter"
|
|
android:src="@drawable/title_logo" />
|
|
|
|
<TextView
|
|
android:id="@+id/title_logo_placeholder_right"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="0.2" >
|
|
</TextView>
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/title_logo_placeholder_below"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="0.6" >
|
|
</TextView>
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout> |