2010-08-23 22:45:04 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-06-11 15:08:48 -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="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:background="@drawable/bg"
|
|
|
|
android:gravity="top"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:id="@+id/mainLayout">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="24dp"
|
|
|
|
android:scaleType="fitStart"
|
|
|
|
android:src="@drawable/droidvnclogo" />
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/relativeLayout1"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="200dp"
|
|
|
|
android:layout_marginTop="10dp" >
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/Button01"
|
|
|
|
android:layout_width="200dp"
|
|
|
|
android:layout_height="200dp"
|
|
|
|
android:layout_centerHorizontal="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>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/stateLabel"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingTop="10dp"
|
|
|
|
android:shadowColor="#111"
|
|
|
|
android:shadowDy="1.0"
|
|
|
|
android:shadowRadius="0.5"
|
|
|
|
android:text="@+id/TextView01"
|
|
|
|
android:textSize="30sp" >
|
|
|
|
</TextView>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/TextView01"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:paddingTop="10dp"
|
|
|
|
android:shadowColor="#111"
|
|
|
|
android:shadowDy="1.0"
|
|
|
|
android:shadowRadius="0.5"
|
|
|
|
android:text="@+id/TextView02"
|
|
|
|
android:textSize="15sp" >
|
|
|
|
</TextView>
|
|
|
|
</LinearLayout>
|
2010-09-24 15:47:56 -04:00
|
|
|
|
2012-06-11 15:08:48 -04:00
|
|
|
<com.google.ads.AdView
|
|
|
|
android:id="@+id/adView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
ads:adSize="BANNER"
|
|
|
|
ads:adUnitId="a14c45a1d8a1817"
|
|
|
|
android:gravity="center_horizontal" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|