Project

General

Profile

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

magiccube / src / main / res / layout / popup_object.xml @ 10373dc7

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="0dp"
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
   <RelativeLayout
22
       android:id="@+id/bottomLayout"
23
       android:layout_width="match_parent"
24
       android:background="@color/grey"
25
       android:layout_height="wrap_content"
26
       android:paddingEnd="10dp"
27
       android:paddingStart="10dp">
28

    
29
       <ImageButton
30
           android:id="@+id/buttonTut"
31
           android:layout_alignParentStart="true"
32
           android:layout_width="wrap_content"
33
           android:layout_height="wrap_content"/>
34

    
35
       <ImageButton
36
           android:id="@+id/buttonDow"
37
           android:layout_centerHorizontal="true"
38
           android:layout_width="wrap_content"
39
           android:layout_height="wrap_content"/>
40
       <TextView
41
           android:id="@+id/bubbleUpdates"
42
           android:layout_width="wrap_content"
43
           android:layout_height="wrap_content"
44
           android:layout_alignTop="@+id/buttonDow"
45
           android:layout_alignEnd="@+id/buttonDow"
46
           android:textColor="#FFF"
47
           android:textSize="16sp"
48
           android:textStyle="bold"
49
           android:background="@drawable/badge_circle"/>
50

    
51
       <ImageButton
52
           android:id="@+id/buttonInf"
53
           android:layout_alignParentEnd="true"
54
           android:layout_width="wrap_content"
55
           android:layout_height="wrap_content"/>
56

    
57
     </RelativeLayout>
58

    
59
</LinearLayout>
(24-24/29)