Project

General

Profile

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

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

1 0fd3ac1f Leszek Koltunski
<?xml version="1.0" encoding="utf-8"?>
2 3a9d19ed Leszek Koltunski
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 0fd3ac1f Leszek Koltunski
        android:layout_width="match_parent"
4
        android:layout_height="wrap_content"
5 39566863 Leszek Koltunski
        android:background="@color/grey"
6 0fd3ac1f Leszek Koltunski
        android:orientation="vertical" >
7
8 3a9d19ed Leszek Koltunski
    <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 0fd3ac1f Leszek Koltunski
32 3a9d19ed Leszek Koltunski
</LinearLayout>