2011-10-29 06:56:13 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-06-11 23:11:34 -04:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:background="@drawable/bg"
|
|
|
|
android:gravity="bottom"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/layout1"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:orientation="horizontal" >
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/linearLayout1"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:gravity="center_horizontal|center_vertical"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="260dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:src="@drawable/droidvnclogo" >
|
|
|
|
</ImageView>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/stateLabel"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:paddingTop="10dp"
|
|
|
|
android:text="@+id/TextView01"
|
|
|
|
android:textSize="30sp"
|
|
|
|
android:typeface="sans" >
|
|
|
|
</TextView>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/TextView01"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:gravity="center"
|
|
|
|
android:paddingTop="10dp"
|
|
|
|
android:shadowColor="#111"
|
|
|
|
android:shadowDy="1.0"
|
|
|
|
android:shadowRadius="0.5"
|
|
|
|
android:text="@+id/TextView02"
|
|
|
|
android:textSize="15sp"
|
|
|
|
android:typeface="sans" >
|
|
|
|
</TextView>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/relativeLayout1"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="177dp"
|
|
|
|
android:gravity="center_horizontal|center_vertical"
|
|
|
|
|
|
|
|
android:layout_gravity="center" >
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/Button01"
|
|
|
|
android:layout_width="150dp"
|
|
|
|
android:layout_height="150dp"
|
|
|
|
android:layout_centerInParent="true"
|
|
|
|
android:background="@drawable/btnstart" >
|
|
|
|
</Button>
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/Button02"
|
|
|
|
android:layout_width="30dp"
|
|
|
|
android:layout_height="30dp"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_toRightOf="@id/Button01"
|
|
|
|
android:background="@drawable/restart_normal" >
|
|
|
|
</Button>
|
|
|
|
</RelativeLayout>
|
2011-10-29 06:56:13 -04:00
|
|
|
</LinearLayout>
|
2012-06-11 23:11:34 -04:00
|
|
|
|
|
|
|
<com.google.ads.AdView
|
|
|
|
android:id="@+id/adView"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
ads:adSize="BANNER"
|
|
|
|
ads:adUnitId="a14c45a1d8a1817" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|