Project

General

Profile

Download (1.02 KB) Statistics
| Branch: | Tag: | Revision:

magiccube / src / main / res / layout / dialog_pattern_tab.xml @ 3a9d19ed

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="wrap_content"
5
        android:orientation="vertical" >
6

    
7
    <Spinner
8
        android:id="@+id/pattern_category_spinner"
9
        android:layout_marginLeft="20dp"
10
        android:layout_marginRight="20dp"
11
        android:layout_marginTop="10dp"
12
        android:layout_marginBottom="10dp"
13
        android:layout_width="match_parent"
14
        android:layout_height="50dp"/>
15

    
16
    <ScrollView
17
        android:id="@+id/tabScrollView"
18
        android:paddingBottom="10dp"
19
        android:background="@color/grey"
20
        android:layout_width="match_parent"
21
        android:layout_height="match_parent">
22

    
23
        <LinearLayout
24
            android:id="@+id/tabLayout"
25
            android:layout_width="match_parent"
26
            android:layout_height="wrap_content"
27
            android:orientation="vertical">
28
        </LinearLayout>
29
    </ScrollView>
30

    
31
</LinearLayout>
(4-4/18)