Changeset 7f84c20 in galcon-client
- Timestamp:
- May 24, 2010, 6:38:28 PM (14 years ago)
- Branches:
- master
- Children:
- 76819ac
- Parents:
- 159eef8
- Files:
-
- 11 added
- 3 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
res/layout/main.xml
r159eef8 r7f84c20 1 1 <?xml version="1.0" encoding="utf-8"?> 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:orientation="vertical" 2 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 4 3 android:layout_width="fill_parent" 5 android:layout_height="fill_parent" 6 > 7 <TextView 8 android:layout_width="fill_parent" 9 android:layout_height="wrap_content" 10 android:text="@string/hello" 11 /> 12 </LinearLayout> 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 TracChangeset
for help on using the changeset viewer.