Files
andors-trail/AndorsTrail/res/layout/save_preview.xml
Zukero 3b28c2f378 Desaturated the clouds' colors. Even less saturation for faraway ones.
Clouds speed should be even more consistent across different devices.
Also made the title screen's UI backgrounds "clickable" so a misclick
doesn't hide the UI too easily.
2018-03-26 16:26:52 +02:00

40 lines
1.4 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="wrap_content"
android:layout_gravity="bottom"
android:background="?attr/ui_theme_stdframe_bitmap"
android:clickable="true"
android:gravity="top|start" >
<RelativeLayout
android:id="@+id/save_preview_hero_info"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:gravity="top|start" >
<ImageView
android:id="@+id/save_preview_hero_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/save_preview_hero_desc"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_toRightOf="@id/save_preview_hero_icon"
android:gravity="top|start"
android:text="@android:string/unknownName" />
</RelativeLayout>
<Button
android:id="@+id/startscreen_continue"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/save_preview_hero_info"
android:layout_marginTop="10dp"
android:text="@string/startscreen_continue" />
</RelativeLayout>