Project

General

Profile

Download (942 Bytes) Statistics
| Branch: | Revision:

sokoban / distorted-sokoban / src / main / res / layout / main.xml @ 3e26ff35

1
<?xml version="1.0" encoding="utf-8"?>
2
 <LinearLayout 
3
 	xmlns:android="http://schemas.android.com/apk/res/android"
4
    android:orientation="vertical"
5
    android:layout_width="match_parent"
6
    android:layout_height="match_parent">
7

    
8
    <LinearLayout
9
        android:id="@+id/hiddenBar"
10
 	    android:orientation="horizontal"
11
        android:layout_width="match_parent"
12
        android:layout_height="1dp"/>
13

    
14
    <LinearLayout
15
        android:id="@+id/upper_layout"
16
 	    android:orientation="horizontal"
17
        android:layout_width="match_parent"
18
        android:layout_height="50dp"/>
19

    
20
    <GridView
21
        android:id="@+id/gridview"
22
        android:layout_width="fill_parent"
23
        android:layout_height="fill_parent"
24
        android:numColumns="2"
25
        android:verticalSpacing="10dp"
26
        android:horizontalSpacing="10dp"
27
        android:stretchMode="columnWidth"
28
        android:gravity="center_horizontal"/>
29
 </LinearLayout>
(5-5/5)