source: galcon-client/res/layout/main.xml@ 38ac100

Last change on this file since 38ac100 was 7f84c20, checked in by dportnoy <devnull@…>, 14 years ago

Created a copy of the LunarLander demo to use for development. Original LunarLander files remain for reference.

  • Property mode set to 100644
File size: 907 bytes
Line 
1<?xml version="1.0" encoding="utf-8"?>
2<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 android:layout_width="fill_parent"
4 android:layout_height="fill_parent">
5
6 <com.example.helloandroid.GameView
7 android:id="@+id/lunar"
8 android:layout_width="fill_parent"
9 android:layout_height="fill_parent"/>
10
11 <RelativeLayout
12 android:layout_width="fill_parent"
13 android:layout_height="fill_parent" >
14 <TextView
15 android:id="@+id/text"
16 android:text="@string/lunar_layout_text_text"
17 android:visibility="visible"
18 android:layout_width="wrap_content"
19 android:layout_height="wrap_content"
20 android:layout_centerInParent="true"
21 android:gravity="center_horizontal"
22 android:textColor="#88ffffff"
23 android:textSize="24sp"/>
24 </RelativeLayout>
25
26</FrameLayout>
Note: See TracBrowser for help on using the repository browser.