- Timestamp:
- Jan 19, 2011, 6:46:17 PM (14 years ago)
- Branches:
- master
- Children:
- 2e798d9
- Parents:
- 9b1f66b
- Location:
- res
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
res/layout/main.xml
r9b1f66b r5d9e7bb 1 1 <?xml version="1.0" encoding="utf-8"?> 2 < LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"3 android:orientation="vertical"4 android:layout_width="fill_parent" 5 android:layout_height="fill_parent"6 > 7 <TextView8 android:layout_width="fill_parent" 9 android:layout_height="wrap_content" 10 android:text="@string/hello" 11 />12 </ LinearLayout>2 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 3 android:layout_width="fill_parent" 4 android:layout_height="fill_parent"> 5 <com.example.advancewars.GameView android:id="@+id/lunar" 6 android:layout_width="fill_parent" 7 android:layout_height="fill_parent" /> 8 <RelativeLayout android:layout_width="fill_parent" 9 android:layout_height="fill_parent"> 10 <TextView android:id="@+id/text" android:visibility="visible" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerInParent="true" android:gravity="center_horizontal" android:textColor="#88ffffff" android:textSize="24sp" /> 11 </RelativeLayout> 12 </FrameLayout> -
res/values/strings.xml
r9b1f66b r5d9e7bb 3 3 <string name="hello">Hello World, advancewars!</string> 4 4 <string name="app_name"></string> 5 <string name="menu_exit">Exit</string> 5 6 </resources>
Note:
See TracChangeset
for help on using the changeset viewer.