mirror of
https://github.com/OMGeeky/andors-trail.git
synced 2026-01-01 09:20:00 +01:00
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.
40 lines
1.4 KiB
XML
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> |