Subversion Repository Public Repository

Nextrek

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="it.fedeloper.smartcharging.Controller.SelectionActivity">


    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:weightSum="5">

        <ImageView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/imageView3"
            android:scaleType="fitCenter"
            android:src="@drawable/screen1"
            android:background="#3cdbff"
            android:layout_weight="3"/>

        <ScrollView
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="2">

            <LinearLayout
                android:orientation="vertical"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:paddingTop="@dimen/space_16dp"
                android:paddingBottom="@dimen/space_16dp">

                <Button
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:text="@string/gestore_locali"
                    android:id="@+id/button22"
                    android:onClick="managerclick"
                    android:background="@color/violet"
                    android:textColor="@color/md_white"
                    android:layout_marginRight="@dimen/space_16dp"
                    android:layout_marginLeft="@dimen/space_16dp"
                    android:layout_marginTop="@dimen/space_16dp"
                    android:layout_gravity="center_horizontal" />

                <Button
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:text="@string/ricarica_al_piu_prest"
                    android:id="@+id/button7"
                    android:onClick="fastclick"
                    android:layout_gravity="center_horizontal"
                    android:layout_marginRight="@dimen/space_16dp"
                    android:layout_marginLeft="@dimen/space_16dp"
                    android:layout_marginTop="@dimen/space_16dp" />


                <TextView
                    android:text="@string/login_o_divider"
                    android:textColor="@color/md_grey_500"
                    android:layout_width="wrap_content"
                    android:layout_marginTop="@dimen/space_8dp"
                    android:layout_marginBottom="@dimen/space_8dp"
                    android:layout_gravity="center_horizontal"
                    android:layout_height="wrap_content"/>

                <fr.ganfra.materialspinner.MaterialSpinner
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:id="@+id/spinner2"
                    app:ms_hint="@string/type_spinner_prompt"
                    app:ms_multiline="false"
                    android:layout_marginRight="@dimen/space_16dp"
                    android:layout_marginLeft="@dimen/space_16dp"
                    android:dropDownSelector="@drawable/spinner_back" />

                <Button
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:text="@string/ricarica_con_pref"
                    android:id="@+id/button8"
                    android:onClick="prefclick"
                    android:enabled="false"
                    android:layout_marginRight="@dimen/space_16dp"
                    android:layout_marginLeft="@dimen/space_16dp"
                    android:layout_marginBottom="@dimen/space_16dp"/>

                <ImageView
                    android:src="@drawable/logoregione"
                    android:layout_marginLeft="@dimen/space_16dp"
                    android:layout_marginRight="@dimen/space_16dp"
                    android:layout_width="match_parent"
                    android:layout_height="45dp" />

            </LinearLayout>
        </ScrollView>
    </LinearLayout>

    <View
        android:layout_alignParentRight="true"
        android:elevation="2dp"
        android:layout_margin="16dp"
        android:id="@+id/setting_button"
        android:background="@drawable/ic_settings_white_24dp"
        android:layout_width="24dp"
        android:layout_height="24dp"/>
</RelativeLayout>

Commits for Nextrek/Android/SmartCharging/SmartCharging/app/src/main/res/layout/activity_selection.xml

Diff revisions: vs.
Revision Author Commited Message
765 Diff Diff MStefanelli picture MStefanelli Tue 22 Sep, 2015 10:03:07 +0000

me

674 Diff Diff MStefanelli picture MStefanelli Fri 04 Sep, 2015 13:11:46 +0000

me

666 Diff Diff MStefanelli picture MStefanelli Fri 04 Sep, 2015 09:55:54 +0000

me

623 Diff Diff MStefanelli picture MStefanelli Tue 01 Sep, 2015 07:21:41 +0000

me

611 Diff Diff MStefanelli picture MStefanelli Fri 28 Aug, 2015 16:19:11 +0000

me

599 Diff Diff MStefanelli picture MStefanelli Fri 28 Aug, 2015 07:16:44 +0000
553 Diff Diff MStefanelli picture MStefanelli Tue 25 Aug, 2015 10:34:36 +0000

me

545 Diff Diff MStefanelli picture MStefanelli Tue 25 Aug, 2015 09:39:56 +0000

me

542 Diff Diff FFontana picture FFontana Mon 24 Aug, 2015 21:40:56 +0000
535 MStefanelli picture MStefanelli Mon 24 Aug, 2015 13:31:12 +0000

WE