Project

General

Profile

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

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

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 8d1da3f1 Leszek Koltunski
       android:layout_height="0dp"
11 b600ccd9 Leszek Koltunski
       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 d6e7c7fb Leszek Koltunski
   <RelativeLayout
22 b600ccd9 Leszek Koltunski
       android:id="@+id/bottomLayout"
23
       android:layout_width="match_parent"
24 d6e7c7fb Leszek Koltunski
       android:background="@color/grey"
25 8d1da3f1 Leszek Koltunski
       android:layout_height="wrap_content"
26 d6e7c7fb Leszek Koltunski
       android:paddingEnd="10dp"
27
       android:paddingStart="10dp">
28 b600ccd9 Leszek Koltunski
29 8d1da3f1 Leszek Koltunski
       <ImageButton
30
           android:id="@+id/buttonTut"
31 d6e7c7fb Leszek Koltunski
           android:layout_alignParentStart="true"
32 8d1da3f1 Leszek Koltunski
           android:layout_width="wrap_content"
33 d6e7c7fb Leszek Koltunski
           android:layout_height="wrap_content"/>
34 8d1da3f1 Leszek Koltunski
35 d6e7c7fb Leszek Koltunski
       <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 8d1da3f1 Leszek Koltunski
           android:layout_width="wrap_content"
43
           android:layout_height="wrap_content"
44 d6e7c7fb Leszek Koltunski
           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 8d1da3f1 Leszek Koltunski
51
       <ImageButton
52 d6e7c7fb Leszek Koltunski
           android:id="@+id/buttonInf"
53
           android:layout_alignParentEnd="true"
54 8d1da3f1 Leszek Koltunski
           android:layout_width="wrap_content"
55 d6e7c7fb Leszek Koltunski
           android:layout_height="wrap_content"/>
56 8d1da3f1 Leszek Koltunski
57 d6e7c7fb Leszek Koltunski
     </RelativeLayout>
58 b600ccd9 Leszek Koltunski
59
</LinearLayout>