Project

General

Profile

Download (1.37 KB) Statistics
| Branch: | Revision:

examples / src / main / res / layout / cubes1layout.xml @ 427ab7bf

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

    
8
    <LinearLayout
9
        android:layout_width="match_parent"
10
        android:layout_height="wrap_content"
11
        android:gravity="center_vertical|center_horizontal" >
12

    
13
        <NumberPicker
14
            android:id="@+id/rowsPicker"
15
            android:layout_width="wrap_content"
16
            android:layout_height="match_parent"
17
            android:layout_marginRight="10dp" />
18

    
19
        <NumberPicker
20
            android:id="@+id/colsPicker"
21
            android:layout_width="wrap_content"
22
            android:layout_height="match_parent"
23
            android:paddingRight="10dp" />
24

    
25
        <Button
26
            android:id="@+id/matrix3dRowMove"
27
            android:layout_width="124dp"
28
            android:layout_height="match_parent"
29
            android:layout_weight="0.64"
30
            android:onClick="Continue"
31
            android:text="@string/continu" />
32
    </LinearLayout>
33

    
34
    <LinearLayout
35
        android:id="@+id/buttongrid"
36
        android:layout_width="match_parent"
37
        android:layout_height="match_parent"
38
        android:gravity="center"
39
        android:orientation="vertical" >
40

    
41
    </LinearLayout>
42

    
43
</LinearLayout>
(3-3/17)