68 lines
2.3 KiB
XML
Executable File
68 lines
2.3 KiB
XML
Executable File
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout 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:orientation="vertical" >
|
|
|
|
<LinearLayout
|
|
android:id="@+id/holder"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentTop="true"
|
|
android:baselineAligned="false"
|
|
android:orientation="horizontal" >
|
|
|
|
<RelativeLayout
|
|
android:layout_width="0px"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="2.5" >
|
|
|
|
<include
|
|
android:id="@+id/die_selector"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_gravity="center"
|
|
layout="@layout/dice_selector" />
|
|
</RelativeLayout>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="0px"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1" >
|
|
|
|
<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>
|
|
</LinearLayout>
|
|
|
|
<ListView
|
|
android:id="@+id/list"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_above="@+id/ad"
|
|
android:layout_below="@id/holder"
|
|
android:layout_gravity="top" />
|
|
|
|
<com.google.ads.AdView
|
|
android:id="@+id/ad"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
ads:adSize="BANNER"
|
|
ads:adUnitId="a14bad63772f7d3"
|
|
ads:loadAdOnCreate="true" />
|
|
|
|
</RelativeLayout> |