Project

General

Profile

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

magiccube / src / main / res / layout / popup_object.xml @ 0b5e585c

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
       <LinearLayout
14
           android:id="@+id/objectLayout"
15
           android:layout_width="match_parent"
16
           android:layout_height="wrap_content"
17
           android:orientation="vertical"/>
18
   </ScrollView>
19

    
20
   <RelativeLayout
21
       android:id="@+id/bottomLayout"
22
       android:layout_width="match_parent"
23
       android:layout_height="wrap_content"
24
       android:background="@color/grey"
25
       android:paddingEnd="10dp"
26
       android:paddingStart="10dp">
27

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

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

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

    
56
     </RelativeLayout>
57

    
58
</LinearLayout>
(32-32/39)