mirror of
https://github.com/OMGeeky/andors-trail.git
synced 2026-02-23 15:38:29 +01:00
78 lines
2.6 KiB
XML
78 lines
2.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/title_bg"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" >
|
|
|
|
<include layout="@layout/title_bg_sky_layout"/>
|
|
|
|
<com.gpl.rpg.AndorsTrail.view.CloudsAnimatorView
|
|
android:id="@+id/ts_clouds_animator"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:elevation="10dp"
|
|
/>
|
|
|
|
<ImageView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginRight="-100sp"
|
|
android:scaleType="centerCrop"
|
|
android:elevation="20dp"
|
|
android:src="@drawable/ts_foreground"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_centerInParent="true"
|
|
android:orientation="vertical"
|
|
android:elevation="30dp" >
|
|
|
|
<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_animated" />
|
|
|
|
<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> |