Project

General

Profile

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

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

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 0b5e585c Leszek Koltunski
       <LinearLayout
14
           android:id="@+id/objectLayout"
15 b600ccd9 Leszek Koltunski
           android:layout_width="match_parent"
16 0b5e585c Leszek Koltunski
           android:layout_height="wrap_content"
17
           android:orientation="vertical"/>
18 b600ccd9 Leszek Koltunski
   </ScrollView>
19
20 d6e7c7fb Leszek Koltunski
   <RelativeLayout
21 b600ccd9 Leszek Koltunski
       android:id="@+id/bottomLayout"
22
       android:layout_width="match_parent"
23 8d1da3f1 Leszek Koltunski
       android:layout_height="wrap_content"
24 9c39179e Leszek Koltunski
       android:background="@color/grey"
25 d6e7c7fb Leszek Koltunski
       android:paddingEnd="10dp"
26
       android:paddingStart="10dp">
27 b600ccd9 Leszek Koltunski
28 8d1da3f1 Leszek Koltunski
       <ImageButton
29
           android:id="@+id/buttonTut"
30 d6e7c7fb Leszek Koltunski
           android:layout_alignParentStart="true"
31 8d1da3f1 Leszek Koltunski
           android:layout_width="wrap_content"
32 d6e7c7fb Leszek Koltunski
           android:layout_height="wrap_content"/>
33 8d1da3f1 Leszek Koltunski
34 d6e7c7fb Leszek Koltunski
       <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 8d1da3f1 Leszek Koltunski
           android:layout_width="wrap_content"
42
           android:layout_height="wrap_content"
43 d6e7c7fb Leszek Koltunski
           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 8d1da3f1 Leszek Koltunski
50
       <ImageButton
51 d6e7c7fb Leszek Koltunski
           android:id="@+id/buttonInf"
52
           android:layout_alignParentEnd="true"
53 8d1da3f1 Leszek Koltunski
           android:layout_width="wrap_content"
54 d6e7c7fb Leszek Koltunski
           android:layout_height="wrap_content"/>
55 8d1da3f1 Leszek Koltunski
56 d6e7c7fb Leszek Koltunski
     </RelativeLayout>
57 b600ccd9 Leszek Koltunski
58
</LinearLayout>