Files
andors-trail/AndorsTrail/res/layout/save_preview.xml
Zukero df81e96a08 WARNING: Does not run!
Huge clean-up. Separation between themes and style. Preparatory work for
theme inheritance and alternative themes made by derivation.
Problem: due to a pre-lollipop bug, I still have to remove some color
indirections through attributes, as they are not preperly resolved.
2017-11-17 19:20:35 +01: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: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>