Project

General

Profile

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

magiccube / src / main / res / layout / dialog_pattern_tab.xml @ 39566863

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:background="@color/grey"
6
        android:orientation="vertical" >
7

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

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

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

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