Project

General

Profile

Download (978 Bytes) Statistics
| Branch: | Tag: | Revision:

magiccube / src / main / res / layout / popup_object_withscroll.xml @ b600ccd9

1 b600ccd9 Leszek Koltunski
<?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:orientation="vertical">
6
7
   <ScrollView
8
       android:id="@+id/objectScroll"
9
       android:layout_width="match_parent"
10
       android:layout_height="match_parent"
11
       android:layout_weight="1">
12
13
       <GridLayout
14
           android:id="@+id/objectGrid"
15
           android:layout_width="match_parent"
16
           android:layout_height="wrap_content">
17
       </GridLayout>
18
19
   </ScrollView>
20
21
   <LinearLayout
22
       android:id="@+id/bottomLayout"
23
       android:background="@color/grey"
24
       android:layout_width="match_parent"
25
       android:layout_height="100dp"
26
       android:layout_weight="1"
27
       android:paddingEnd="5dp"
28
       android:paddingStart="5dp"
29
       android:gravity="end"
30
       android:orientation="horizontal">
31
32
   </LinearLayout>
33
34
</LinearLayout>