Project

General

Profile

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

magiccube / src / main / res / layout / popup_object.xml @ 4c650458

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: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:orientation="horizontal">
30

    
31
   </LinearLayout>
32

    
33
</LinearLayout>
(23-23/27)