Files
exalted_dice/ExaltedDice/res/layout-land/main.xml
2013-06-14 15:20:34 -04:00

58 lines
2.0 KiB
XML
Executable File

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:baselineAligned="false"
android:orientation="horizontal" >
<RelativeLayout
android:id="@+id/dice"
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight="1" >
<include
android:id="@+id/die_selector"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
layout="@layout/dice_selector" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/die_selector"
android:layout_marginTop="10dip" >
<Button
android:id="@+id/roll_button"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@string/roll" />
<ProgressBar
android:id="@+id/roll_progress"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:visibility="gone" />
</RelativeLayout>
</RelativeLayout>
<RelativeLayout
android:layout_width="0px"
android:layout_height="wrap_content"
android:layout_weight="1" >
<ListView
android:id="@+id/list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_above="@+id/ad"
android:layout_gravity="top" />
</RelativeLayout>
</LinearLayout>