리비전 24, 0.9 kB
(mefour에 의해 체크인됨, 15 년 전)
|
우태경
|
Line | |
---|
1 |
<?xml version="1.0" encoding="utf-8"?> |
---|
2 |
|
---|
3 |
<FrameLayout |
---|
4 |
android:layout_width="fill_parent" |
---|
5 |
android:layout_height="fill_parent" |
---|
6 |
xmlns:android="http://schemas.android.com/apk/res/android" |
---|
7 |
android:id="@+id/MainFrame"> |
---|
8 |
|
---|
9 |
<com.androidside.demo.tetris.BoardView |
---|
10 |
android:id="@+id/Tetris" |
---|
11 |
android:layout_width="fill_parent" |
---|
12 |
android:layout_height="fill_parent" /> |
---|
13 |
|
---|
14 |
<RelativeLayout android:id="@+id/RelativeLayout01" android:layout_width="fill_parent" android:layout_height="fill_parent"> |
---|
15 |
<TextView |
---|
16 |
android:id="@+id/MessageDisplay" |
---|
17 |
android:text="@string/title_text" |
---|
18 |
android:visibility="invisible" |
---|
19 |
android:layout_width="wrap_content" |
---|
20 |
android:layout_height="wrap_content" |
---|
21 |
android:layout_centerInParent="true" |
---|
22 |
android:gravity="center_horizontal" |
---|
23 |
android:textColor="#ff00ff00" |
---|
24 |
android:textSize="24sp"/> |
---|
25 |
</RelativeLayout> |
---|
26 |
</FrameLayout> |
---|