Project

General

Profile

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

magiccube / src / main / res / layout / popup_object.xml @ 58fd2ec0

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 464ade4a leszek
       android:layout_height="60dp"
25 9c39179e Leszek Koltunski
       android:background="@color/grey"
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 464ade4a leszek
           android:adjustViewBounds="true"
33
           android:scaleType="fitCenter"
34 8d1da3f1 Leszek Koltunski
           android:layout_width="wrap_content"
35 464ade4a leszek
           android:layout_height="match_parent"/>
36 8d1da3f1 Leszek Koltunski
37 d6e7c7fb Leszek Koltunski
       <ImageButton
38
           android:id="@+id/buttonDow"
39
           android:layout_centerHorizontal="true"
40 464ade4a leszek
           android:adjustViewBounds="true"
41
           android:scaleType="fitCenter"
42 d6e7c7fb Leszek Koltunski
           android:layout_width="wrap_content"
43 464ade4a leszek
           android:layout_height="match_parent"/>
44 d6e7c7fb Leszek Koltunski
       <TextView
45
           android:id="@+id/bubbleUpdates"
46 464ade4a leszek
           android:adjustViewBounds="true"
47 8d1da3f1 Leszek Koltunski
           android:layout_width="wrap_content"
48
           android:layout_height="wrap_content"
49 d6e7c7fb Leszek Koltunski
           android:layout_alignTop="@+id/buttonDow"
50
           android:layout_alignEnd="@+id/buttonDow"
51 464ade4a leszek
           android:scaleType="fitCenter"
52 d6e7c7fb Leszek Koltunski
           android:textColor="#FFF"
53
           android:textSize="16sp"
54
           android:textStyle="bold"
55
           android:background="@drawable/badge_circle"/>
56 8d1da3f1 Leszek Koltunski
57
       <ImageButton
58 d6e7c7fb Leszek Koltunski
           android:id="@+id/buttonInf"
59 464ade4a leszek
           android:adjustViewBounds="true"
60 d6e7c7fb Leszek Koltunski
           android:layout_alignParentEnd="true"
61 464ade4a leszek
           android:scaleType="fitCenter"
62 8d1da3f1 Leszek Koltunski
           android:layout_width="wrap_content"
63 464ade4a leszek
           android:layout_height="match_parent"/>
64 8d1da3f1 Leszek Koltunski
65 d6e7c7fb Leszek Koltunski
     </RelativeLayout>
66 b600ccd9 Leszek Koltunski
67
</LinearLayout>