Spliced Amarino into Droidcopter
Benjamin Bardin
11 years ago
0 | 0 | <?xml version="1.0" encoding="UTF-8"?> |
1 | 1 | <classpath> |
2 | <classpathentry excluding="org/haldean/chopper/pilot/nav/NavListTest.java|org/haldean/chopper/pilot/nav/NavVelTest.java|org/haldean/chopper/server/|org/haldean/blob/JavaImage.java|org/haldean/blob/SegmentTest.java" including="org/haldean/blob/|org/haldean/chopper/nav/|org/haldean/chopper/pilot/" kind="src" path="src"/> | |
2 | <classpathentry excluding="org/haldean/blob/JavaImage.java|org/haldean/blob/SegmentTest.java|org/haldean/chopper/pilot/nav/NavListTest.java|org/haldean/chopper/pilot/nav/NavVelTest.java|org/haldean/chopper/server/" kind="src" path="src"/> | |
3 | 3 | <classpathentry kind="src" path="gen"/> |
4 | 4 | <classpathentry kind="con" path="com.android.ide.eclipse.adt.ANDROID_FRAMEWORK"/> |
5 | <classpathentry kind="lib" path="/home/benjamin/workspace/droidcopter/jars/amarino.jar"/> | |
5 | <classpathentry kind="lib" path="/home/benjamin/workspace/droidcopter/jars/AndroidBluetoothLibrary.jar"/> | |
6 | 6 | <classpathentry kind="output" path="bin"/> |
7 | 7 | </classpath> |
12 | 12 | android:debuggable="true" |
13 | 13 | android:persistent="true" |
14 | 14 | android:configChanges="orientation"> |
15 | <activity android:name="ChopperMain" | |
15 | ||
16 | <activity android:name="at.abraxas.amarino.MainScreen" android:screenOrientation="portrait" | |
17 | android:label="@string/app_name"> | |
18 | <intent-filter> | |
19 | <action android:name="android.intent.action.MAIN" /> | |
20 | <category android:name="android.intent.category.LAUNCHER" /> | |
21 | </intent-filter> | |
22 | </activity> | |
23 | ||
24 | <activity android:name="ChopperMain" | |
16 | 25 | android:screenOrientation="portrait" |
17 | 26 | android:label="Chopper" |
18 | 27 | android:persistent="true"> |
19 | <intent-filter> | |
20 | <action android:name="android.intent.action.MAIN" /> | |
21 | <category android:name="android.intent.category.LAUNCHER" /> | |
22 | </intent-filter> | |
23 | 28 | </activity> |
24 | </application> | |
29 | ||
30 | <!-- android:theme="@android:style/Theme.Dialog" --> | |
31 | <activity android:name="at.abraxas.amarino.DeviceDiscovery" | |
32 | android:screenOrientation="portrait"/> | |
33 | ||
34 | <activity android:name="at.abraxas.amarino.EventListActivity" android:screenOrientation="portrait"/> | |
35 | ||
36 | <activity android:name="at.abraxas.amarino.Monitoring" | |
37 | android:windowSoftInputMode="stateHidden"/> | |
38 | ||
39 | <service android:name="at.abraxas.amarino.AmarinoService" | |
40 | android:exported="true"> | |
41 | <intent-filter> | |
42 | <action android:name="amarino.intent.action.SEND" /> | |
43 | </intent-filter> | |
44 | </service> | |
45 | ||
46 | <receiver android:name="at.abraxas.amarino.RemoteControl" | |
47 | android:process="at.abraxas.amarino"> | |
48 | <intent-filter> | |
49 | <action android:name="amarino.intent.action.CONNECT" /> | |
50 | <action android:name="amarino.intent.action.DISCONNECT" /> | |
51 | <action android:name="amarino.intent.action.ACTION_GET_CONNECTED_DEVICES" /> | |
52 | </intent-filter> | |
53 | ||
54 | </receiver> | |
55 | ||
56 | </application> | |
57 | ||
58 | ||
59 | ||
60 | <supports-screens android:anyDensity="true" android:resizeable="true" android:smallScreens="true" android:largeScreens="true" android:normalScreens="true"></supports-screens> | |
61 | ||
62 | ||
25 | 63 | |
26 | 64 | <uses-permission android:name="android.permission.CAMERA"></uses-permission> |
27 | 65 | <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"></uses-permission> |
40 | 78 | <uses-permission android:name="android.permission.WAKE_LOCK"></uses-permission> |
41 | 79 | <uses-permission android:name="android.permission.DEVICE_POWER"></uses-permission> |
42 | 80 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission> |
81 | <uses-permission android:name="android.permission.BLUETOOTH"></uses-permission> | |
82 | <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"></uses-permission> | |
43 | 83 | |
44 | 84 | <uses-feature android:name="android.hardware.camera" /> |
45 | 85 | <uses-feature android:name="android.hardware.camera.autofocus" /> |
9 | 9 | public final class R { |
10 | 10 | public static final class attr { |
11 | 11 | } |
12 | public static final class color { | |
13 | public static final int background=0x7f040000; | |
14 | public static final int background_event_feedback=0x7f040008; | |
15 | public static final int background_graph=0x7f040009; | |
16 | public static final int background_screen=0x7f04000a; | |
17 | public static final int connected_off=0x7f040002; | |
18 | public static final int connected_on=0x7f040001; | |
19 | public static final int disconnected_off=0x7f040004; | |
20 | public static final int disconnected_on=0x7f040003; | |
21 | public static final int light_gray_text=0x7f040005; | |
22 | public static final int light_yellowish_text=0x7f040006; | |
23 | public static final int monitoring_btn_text=0x7f040007; | |
24 | } | |
25 | public static final class dimen { | |
26 | public static final int button_font_size=0x7f050000; | |
27 | public static final int device_name_size=0x7f050001; | |
28 | } | |
12 | 29 | public static final class drawable { |
13 | public static final int icon=0x7f020000; | |
30 | public static final int about_icon=0x7f020000; | |
31 | public static final int add=0x7f020001; | |
32 | public static final int binocular_128=0x7f020002; | |
33 | public static final int bluetooth_ball_128=0x7f020003; | |
34 | public static final int btn_background=0x7f020004; | |
35 | public static final int btn_default=0x7f020005; | |
36 | public static final int btn_focused=0x7f020006; | |
37 | public static final int btn_selected=0x7f020007; | |
38 | public static final int device_list_item_background=0x7f020008; | |
39 | public static final int device_list_item_default=0x7f020009; | |
40 | public static final int device_list_item_focused=0x7f02000a; | |
41 | public static final int device_list_item_selected=0x7f02000b; | |
42 | public static final int divider_vertical_dark=0x7f02000c; | |
43 | public static final int icon=0x7f02000d; | |
44 | public static final int icon_background=0x7f02000e; | |
45 | public static final int icon_small=0x7f02000f; | |
46 | public static final int icon_very_small=0x7f020010; | |
47 | public static final int list_btn=0x7f020011; | |
48 | public static final int list_btn_background=0x7f020012; | |
49 | public static final int list_btn_default=0x7f020013; | |
50 | public static final int list_btn_focused=0x7f020014; | |
51 | public static final int list_btn_selected=0x7f020015; | |
52 | public static final int list_selector=0x7f020019; | |
53 | public static final int locker_default=0x7f020016; | |
54 | public static final int locker_selected=0x7f020017; | |
55 | public static final int settings_128=0x7f020018; | |
14 | 56 | } |
15 | 57 | public static final class id { |
16 | public static final int preview=0x7f050000; | |
58 | public static final int add_device_btn=0x7f080012; | |
59 | public static final int add_device_btn_text=0x7f080013; | |
60 | public static final int add_event_btn=0x7f080010; | |
61 | public static final int bt_icon=0x7f08000a; | |
62 | public static final int btn_panel=0x7f08001b; | |
63 | public static final int button_bar=0x7f08000f; | |
64 | public static final int chopper_btn_layout=0x7f080016; | |
65 | public static final int clear_btn=0x7f08001d; | |
66 | public static final int connect_btn=0x7f080006; | |
67 | public static final int connected=0x7f080005; | |
68 | public static final int data_to_send=0x7f080020; | |
69 | public static final int device=0x7f080009; | |
70 | public static final int device_address=0x7f080007; | |
71 | public static final int device_name=0x7f080008; | |
72 | public static final int disconnected=0x7f080004; | |
73 | public static final int divider=0x7f080003; | |
74 | public static final int edit_panel=0x7f08001e; | |
75 | public static final int event=0x7f08000e; | |
76 | public static final int event_desc=0x7f08000d; | |
77 | public static final int event_flag=0x7f08000b; | |
78 | public static final int event_name=0x7f08000c; | |
79 | public static final int flag_btn=0x7f08001f; | |
80 | public static final int icon=0x7f080023; | |
81 | public static final int launch_chopper_btn=0x7f080017; | |
82 | public static final int list_btn=0x7f080002; | |
83 | public static final int log=0x7f080022; | |
84 | public static final int log_scroll=0x7f080021; | |
85 | public static final int monitoring_btn=0x7f080014; | |
86 | public static final int monitoring_btn_text=0x7f080015; | |
87 | public static final int name=0x7f080024; | |
88 | public static final int preview=0x7f080001; | |
89 | public static final int root_layout=0x7f080011; | |
90 | public static final int scrollView=0x7f080000; | |
91 | public static final int send_btn=0x7f08001c; | |
92 | public static final int settings_btn=0x7f080019; | |
93 | public static final int settings_btn_layout=0x7f080018; | |
94 | public static final int settings_btn_text=0x7f08001a; | |
17 | 95 | } |
18 | 96 | public static final class layout { |
19 | public static final int main=0x7f030000; | |
97 | public static final int about=0x7f030000; | |
98 | public static final int chopper_prev=0x7f030001; | |
99 | public static final int devices_list_item=0x7f030002; | |
100 | public static final int discovered_devices_list=0x7f030003; | |
101 | public static final int discovered_devices_list_item=0x7f030004; | |
102 | public static final int event_entry=0x7f030005; | |
103 | public static final int event_list=0x7f030006; | |
104 | public static final int info=0x7f030007; | |
105 | public static final int main=0x7f030008; | |
106 | public static final int monitoring=0x7f030009; | |
107 | public static final int plugin_entry=0x7f03000a; | |
20 | 108 | } |
21 | 109 | public static final class string { |
22 | public static final int app_name=0x7f040001; | |
23 | public static final int hello=0x7f040000; | |
110 | public static final int about_changelog=0x7f06002a; | |
111 | public static final int about_msg=0x7f060029; | |
112 | public static final int add_bt_device=0x7f060001; | |
113 | public static final int add_event=0x7f060002; | |
114 | public static final int app_name=0x7f060004; | |
115 | public static final int connect=0x7f060008; | |
116 | public static final int connected=0x7f060009; | |
117 | public static final int connecting=0x7f06000c; | |
118 | public static final int disable=0x7f060011; | |
119 | public static final int disabled=0x7f060012; | |
120 | public static final int disconnect=0x7f06000a; | |
121 | public static final int disconnected=0x7f06000b; | |
122 | public static final int enable=0x7f060010; | |
123 | public static final int flag_btn=0x7f060017; | |
124 | public static final int force_disable=0x7f060014; | |
125 | public static final int force_disable_all=0x7f06000f; | |
126 | public static final int force_enable=0x7f060013; | |
127 | public static final int hello=0x7f060003; | |
128 | public static final int menu_about=0x7f06001a; | |
129 | public static final int monitoring=0x7f060000; | |
130 | /** Titles | |
131 | */ | |
132 | public static final int monitoring_title=0x7f060027; | |
133 | public static final int no_devices=0x7f060006; | |
134 | public static final int no_events=0x7f060007; | |
135 | public static final int no_plugins_installed=0x7f060015; | |
136 | public static final int plugin_info_msg=0x7f060016; | |
137 | public static final int remove=0x7f06000d; | |
138 | public static final int remove_all=0x7f06000e; | |
139 | public static final int remove_device=0x7f060019; | |
140 | public static final int service_active_connections=0x7f06001d; | |
141 | public static final int service_address_invalid=0x7f060024; | |
142 | public static final int service_connected_to=0x7f060021; | |
143 | public static final int service_connecting_to=0x7f06001f; | |
144 | public static final int service_connection_to_failed=0x7f060020; | |
145 | public static final int service_disconnected_from=0x7f060022; | |
146 | public static final int service_message_to_send=0x7f060025; | |
147 | public static final int service_no_active_connections=0x7f06001e; | |
148 | public static final int service_notify_text=0x7f06001c; | |
149 | public static final int service_pairing_request=0x7f060023; | |
150 | public static final int service_ready_to_shutdown=0x7f060026; | |
151 | /** Service messages | |
152 | */ | |
153 | public static final int service_started_title=0x7f06001b; | |
154 | public static final int settings=0x7f060005; | |
155 | public static final int settings_title=0x7f060028; | |
156 | /** Context menu MainScreen | |
157 | */ | |
158 | public static final int show_events=0x7f060018; | |
159 | } | |
160 | public static final class style { | |
161 | public static final int image_button_with_bottom_text=0x7f070000; | |
24 | 162 | } |
25 | 163 | } |
0 | K 25 | |
1 | svn:wc:ra_dav:version-url | |
2 | V 35 | |
3 | /svn/!svn/ver/10/trunk/amarino/pics | |
4 | END | |
5 | icon_background.psd | |
6 | K 25 | |
7 | svn:wc:ra_dav:version-url | |
8 | V 55 | |
9 | /svn/!svn/ver/10/trunk/amarino/pics/icon_background.psd | |
10 | END | |
11 | icon.psd | |
12 | K 25 | |
13 | svn:wc:ra_dav:version-url | |
14 | V 43 | |
15 | /svn/!svn/ver/1/trunk/amarino/pics/icon.psd | |
16 | END | |
17 | binocular_128.psd | |
18 | K 25 | |
19 | svn:wc:ra_dav:version-url | |
20 | V 52 | |
21 | /svn/!svn/ver/1/trunk/amarino/pics/binocular_128.psd | |
22 | END |
0 | 10 | |
1 | ||
2 | dir | |
3 | 28 | |
4 | http://amarino.googlecode.com/svn/trunk/amarino/pics | |
5 | http://amarino.googlecode.com/svn | |
6 | ||
7 | ||
8 | ||
9 | 2010-07-08T22:19:04.182431Z | |
10 | 10 | |
11 | bonifaz.kaufmann | |
12 | ||
13 | ||
14 | ||
15 | ||
16 | ||
17 | ||
18 | ||
19 | ||
20 | ||
21 | ||
22 | ||
23 | ||
24 | ||
25 | ||
26 | 87dd5177-5231-7982-c9c5-4deadf6c03d2 | |
27 | ||
28 | icon_background.psd | |
29 | file | |
30 | ||
31 | ||
32 | ||
33 | ||
34 | 2011-04-26T14:39:40.322111Z | |
35 | 77be5dd8f2ab8ce000bc0a26b299e73e | |
36 | 2010-07-08T22:19:04.182431Z | |
37 | 10 | |
38 | bonifaz.kaufmann | |
39 | has-props | |
40 | ||
41 | ||
42 | ||
43 | ||
44 | ||
45 | ||
46 | ||
47 | ||
48 | ||
49 | ||
50 | ||
51 | ||
52 | ||
53 | ||
54 | ||
55 | ||
56 | ||
57 | ||
58 | ||
59 | ||
60 | 362101 | |
61 | ||
62 | icon.psd | |
63 | file | |
64 | ||
65 | ||
66 | ||
67 | ||
68 | 2011-04-26T14:39:40.326111Z | |
69 | 62ba108f69fc1922310703ea14697c47 | |
70 | 2010-06-10T13:38:22.246184Z | |
71 | 1 | |
72 | bonifaz.kaufmann | |
73 | has-props | |
74 | ||
75 | ||
76 | ||
77 | ||
78 | ||
79 | ||
80 | ||
81 | ||
82 | ||
83 | ||
84 | ||
85 | ||
86 | ||
87 | ||
88 | ||
89 | ||
90 | ||
91 | ||
92 | ||
93 | ||
94 | 208345 | |
95 | ||
96 | binocular_128.psd | |
97 | file | |
98 | ||
99 | ||
100 | ||
101 | ||
102 | 2011-04-26T14:39:40.326111Z | |
103 | 3f9550fbe96ea41a53b9bb68fc8b8132 | |
104 | 2010-06-10T13:38:22.246184Z | |
105 | 1 | |
106 | bonifaz.kaufmann | |
107 | has-props | |
108 | ||
109 | ||
110 | ||
111 | ||
112 | ||
113 | ||
114 | ||
115 | ||
116 | ||
117 | ||
118 | ||
119 | ||
120 | ||
121 | ||
122 | ||
123 | ||
124 | ||
125 | ||
126 | ||
127 | ||
128 | 92668 | |
129 |
Binary diff not shown
Binary diff not shown
Binary diff not shown
Binary diff not shown
Binary diff not shown
Binary diff not shown
0 | K 25 | |
1 | svn:wc:ra_dav:version-url | |
2 | V 43 | |
3 | /svn/!svn/ver/10/trunk/amarino/res/drawable | |
4 | END | |
5 | device_list_item_selected.xml | |
6 | K 25 | |
7 | svn:wc:ra_dav:version-url | |
8 | V 72 | |
9 | /svn/!svn/ver/1/trunk/amarino/res/drawable/device_list_item_selected.xml | |
10 | END | |
11 | device_list_item_focused.xml | |
12 | K 25 | |
13 | svn:wc:ra_dav:version-url | |
14 | V 71 | |
15 | /svn/!svn/ver/1/trunk/amarino/res/drawable/device_list_item_focused.xml | |
16 | END | |
17 | btn_background.xml | |
18 | K 25 | |
19 | svn:wc:ra_dav:version-url | |
20 | V 61 | |
21 | /svn/!svn/ver/1/trunk/amarino/res/drawable/btn_background.xml | |
22 | END | |
23 | list_btn_default.xml | |
24 | K 25 | |
25 | svn:wc:ra_dav:version-url | |
26 | V 63 | |
27 | /svn/!svn/ver/1/trunk/amarino/res/drawable/list_btn_default.xml | |
28 | END | |
29 | list_btn_selected.xml | |
30 | K 25 | |
31 | svn:wc:ra_dav:version-url | |
32 | V 64 | |
33 | /svn/!svn/ver/1/trunk/amarino/res/drawable/list_btn_selected.xml | |
34 | END | |
35 | list_btn_focused.xml | |
36 | K 25 | |
37 | svn:wc:ra_dav:version-url | |
38 | V 63 | |
39 | /svn/!svn/ver/1/trunk/amarino/res/drawable/list_btn_focused.xml | |
40 | END | |
41 | btn_default.xml | |
42 | K 25 | |
43 | svn:wc:ra_dav:version-url | |
44 | V 58 | |
45 | /svn/!svn/ver/1/trunk/amarino/res/drawable/btn_default.xml | |
46 | END | |
47 | btn_focused.xml | |
48 | K 25 | |
49 | svn:wc:ra_dav:version-url | |
50 | V 58 | |
51 | /svn/!svn/ver/1/trunk/amarino/res/drawable/btn_focused.xml | |
52 | END | |
53 | btn_selected.xml | |
54 | K 25 | |
55 | svn:wc:ra_dav:version-url | |
56 | V 59 | |
57 | /svn/!svn/ver/1/trunk/amarino/res/drawable/btn_selected.xml | |
58 | END | |
59 | binocular_128.png | |
60 | K 25 | |
61 | svn:wc:ra_dav:version-url | |
62 | V 60 | |
63 | /svn/!svn/ver/1/trunk/amarino/res/drawable/binocular_128.png | |
64 | END | |
65 | icon_small.png | |
66 | K 25 | |
67 | svn:wc:ra_dav:version-url | |
68 | V 57 | |
69 | /svn/!svn/ver/1/trunk/amarino/res/drawable/icon_small.png | |
70 | END | |
71 | about_icon.png | |
72 | K 25 | |
73 | svn:wc:ra_dav:version-url | |
74 | V 57 | |
75 | /svn/!svn/ver/6/trunk/amarino/res/drawable/about_icon.png | |
76 | END | |
77 | locker_default.png | |
78 | K 25 | |
79 | svn:wc:ra_dav:version-url | |
80 | V 61 | |
81 | /svn/!svn/ver/1/trunk/amarino/res/drawable/locker_default.png | |
82 | END | |
83 | device_list_item_background.xml | |
84 | K 25 | |
85 | svn:wc:ra_dav:version-url | |
86 | V 74 | |
87 | /svn/!svn/ver/1/trunk/amarino/res/drawable/device_list_item_background.xml | |
88 | END | |
89 | icon_very_small.png | |
90 | K 25 | |
91 | svn:wc:ra_dav:version-url | |
92 | V 62 | |
93 | /svn/!svn/ver/1/trunk/amarino/res/drawable/icon_very_small.png | |
94 | END | |
95 | icon_background.png | |
96 | K 25 | |
97 | svn:wc:ra_dav:version-url | |
98 | V 63 | |
99 | /svn/!svn/ver/10/trunk/amarino/res/drawable/icon_background.png | |
100 | END | |
101 | locker_selected.png | |
102 | K 25 | |
103 | svn:wc:ra_dav:version-url | |
104 | V 62 | |
105 | /svn/!svn/ver/1/trunk/amarino/res/drawable/locker_selected.png | |
106 | END | |
107 | divider_vertical_dark.9.png | |
108 | K 25 | |
109 | svn:wc:ra_dav:version-url | |
110 | V 70 | |
111 | /svn/!svn/ver/1/trunk/amarino/res/drawable/divider_vertical_dark.9.png | |
112 | END | |
113 | device_list_item_default.xml | |
114 | K 25 | |
115 | svn:wc:ra_dav:version-url | |
116 | V 71 | |
117 | /svn/!svn/ver/1/trunk/amarino/res/drawable/device_list_item_default.xml | |
118 | END | |
119 | add.png | |
120 | K 25 | |
121 | svn:wc:ra_dav:version-url | |
122 | V 50 | |
123 | /svn/!svn/ver/1/trunk/amarino/res/drawable/add.png | |
124 | END | |
125 | icon.png | |
126 | K 25 | |
127 | svn:wc:ra_dav:version-url | |
128 | V 51 | |
129 | /svn/!svn/ver/6/trunk/amarino/res/drawable/icon.png | |
130 | END | |
131 | bluetooth_ball_128.png | |
132 | K 25 | |
133 | svn:wc:ra_dav:version-url | |
134 | V 65 | |
135 | /svn/!svn/ver/1/trunk/amarino/res/drawable/bluetooth_ball_128.png | |
136 | END | |
137 | list_btn_background.xml | |
138 | K 25 | |
139 | svn:wc:ra_dav:version-url | |
140 | V 66 | |
141 | /svn/!svn/ver/1/trunk/amarino/res/drawable/list_btn_background.xml | |
142 | END | |
143 | list_btn.xml | |
144 | K 25 | |
145 | svn:wc:ra_dav:version-url | |
146 | V 55 | |
147 | /svn/!svn/ver/1/trunk/amarino/res/drawable/list_btn.xml | |
148 | END | |
149 | settings_128.png | |
150 | K 25 | |
151 | svn:wc:ra_dav:version-url | |
152 | V 59 | |
153 | /svn/!svn/ver/1/trunk/amarino/res/drawable/settings_128.png | |
154 | END |
0 | 10 | |
1 | ||
2 | dir | |
3 | 28 | |
4 | http://amarino.googlecode.com/svn/trunk/amarino/res/drawable | |
5 | http://amarino.googlecode.com/svn | |
6 | ||
7 | ||
8 | ||
9 | 2010-07-08T22:19:04.182431Z | |
10 | 10 | |
11 | bonifaz.kaufmann | |
12 | ||
13 | ||
14 | ||
15 | ||
16 | ||
17 | ||
18 | ||
19 | ||
20 | ||
21 | ||
22 | ||
23 | ||
24 | ||
25 | ||
26 | 87dd5177-5231-7982-c9c5-4deadf6c03d2 | |
27 | ||
28 | device_list_item_selected.xml | |
29 | file | |
30 | ||
31 | ||
32 | ||
33 | ||
34 | 2011-04-26T14:39:39.942111Z | |
35 | d56a55f0faaa99ffe5e3983d5a67fff2 | |
36 | 2010-06-10T13:38:22.246184Z | |
37 | 1 | |
38 | bonifaz.kaufmann | |
39 | ||
40 | ||
41 | ||
42 | ||
43 | ||
44 | ||
45 | ||
46 | ||
47 | ||
48 | ||
49 | ||
50 | ||
51 | ||
52 | ||
53 | ||
54 | ||
55 | ||
56 | ||
57 | ||
58 | ||
59 | ||
60 | 1028 | |
61 | ||
62 | device_list_item_focused.xml | |
63 | file | |
64 | ||
65 | ||
66 | ||
67 | ||
68 | 2011-04-26T14:39:39.942111Z | |
69 | a2fa94cacb0874317397cbe1721cd39c | |
70 | 2010-06-10T13:38:22.246184Z | |
71 | 1 | |
72 | bonifaz.kaufmann | |
73 | ||
74 | ||
75 | ||
76 | ||
77 | ||
78 | ||
79 | ||
80 | ||
81 | ||
82 | ||
83 | ||
84 | ||
85 | ||
86 | ||
87 | ||
88 | ||
89 | ||
90 | ||
91 | ||
92 | ||
93 | ||
94 | 1028 | |
95 | ||
96 | btn_background.xml | |
97 | file | |
98 | ||
99 | ||
100 | ||
101 | ||
102 | 2011-04-26T14:39:39.946111Z | |
103 | a40eaf98979b5533350593aad5526e55 | |
104 | 2010-06-10T13:38:22.246184Z | |
105 | 1 | |
106 | bonifaz.kaufmann | |
107 | ||
108 | ||
109 | ||
110 | ||
111 | ||
112 | ||
113 | ||
114 | ||
115 | ||
116 | ||
117 | ||
118 | ||
119 | ||
120 | ||
121 | ||
122 | ||
123 | ||
124 | ||
125 | ||
126 | ||
127 | ||
128 | 1747 | |
129 | ||
130 | list_btn_default.xml | |
131 | file | |
132 | ||
133 | ||
134 | ||
135 | ||
136 | 2011-04-26T14:39:39.946111Z | |
137 | b2f5a12f6ace233129c1086de4cf8a24 | |
138 | 2010-06-10T13:38:22.246184Z | |
139 | 1 | |
140 | bonifaz.kaufmann | |
141 | ||
142 | ||
143 | ||
144 | ||
145 | ||
146 | ||
147 | ||
148 | ||
149 | ||
150 | ||
151 | ||
152 | ||
153 | ||
154 | ||
155 | ||
156 | ||
157 | ||
158 | ||
159 | ||
160 | ||
161 | ||
162 | 1028 | |
163 | ||
164 | list_btn_selected.xml | |
165 | file | |
166 | ||
167 | ||
168 | ||
169 | ||
170 | 2011-04-26T14:39:39.946111Z | |
171 | 5bb149b57172a68bc7de2720ddd8548e | |
172 | 2010-06-10T13:38:22.246184Z | |
173 | 1 | |
174 | bonifaz.kaufmann | |
175 | ||
176 | ||
177 | ||
178 | ||
179 | ||
180 | ||
181 | ||
182 | ||
183 | ||
184 | ||
185 | ||
186 | ||
187 | ||
188 | ||
189 | ||
190 | ||
191 | ||
192 | ||
193 | ||
194 | ||
195 | ||
196 | 1028 | |
197 | ||
198 | list_btn_focused.xml | |
199 | file | |
200 | ||
201 | ||
202 | ||
203 | ||
204 | 2011-04-26T14:39:39.946111Z | |
205 | ae28c1f38ebdd5d1d217214058f3a14e | |
206 | 2010-06-10T13:38:22.246184Z | |
207 | 1 | |
208 | bonifaz.kaufmann | |
209 | ||
210 | ||
211 | ||
212 | ||
213 | ||
214 | ||
215 | ||
216 | ||
217 | ||
218 | ||
219 | ||
220 | ||
221 | ||
222 | ||
223 | ||
224 | ||
225 | ||
226 | ||
227 | ||
228 | ||
229 | ||
230 | 1028 | |
231 | ||
232 | btn_default.xml | |
233 | file | |
234 | ||
235 | ||
236 | ||
237 | ||
238 | 2011-04-26T14:39:39.946111Z | |
239 | 016d2c5c411ef57a2bbdf3156c19669f | |
240 | 2010-06-10T13:38:22.246184Z | |
241 | 1 | |
242 | bonifaz.kaufmann | |
243 | ||
244 | ||
245 | ||
246 | ||
247 | ||
248 | ||
249 | ||
250 | ||
251 | ||
252 | ||
253 | ||
254 | ||
255 | ||
256 | ||
257 | ||
258 | ||
259 | ||
260 | ||
261 | ||
262 | ||
263 | ||
264 | 1028 | |
265 | ||
266 | btn_focused.xml | |
267 | file | |
268 | ||
269 | ||
270 | ||
271 | ||
272 | 2011-04-26T14:39:39.950111Z | |
273 | d9e0b270ec2cfc8c8bb8e66e6615627c | |
274 | 2010-06-10T13:38:22.246184Z | |
275 | 1 | |
276 | bonifaz.kaufmann | |
277 | ||
278 | ||
279 | ||
280 | ||
281 | ||
282 | ||
283 | ||
284 | ||
285 | ||
286 | ||
287 | ||
288 | ||
289 | ||
290 | ||
291 | ||
292 | ||
293 | ||
294 | ||
295 | ||
296 | ||
297 | ||
298 | 1028 | |
299 | ||
300 | btn_selected.xml | |
301 | file | |
302 | ||
303 | ||
304 | ||
305 | ||
306 | 2011-04-26T14:39:39.946111Z | |
307 | 0ab75f8de097ed31d08adbfdf9cd20e5 | |
308 | 2010-06-10T13:38:22.246184Z | |
309 | 1 | |
310 | bonifaz.kaufmann | |
311 | ||
312 | ||
313 | ||
314 | ||
315 | ||
316 | ||
317 | ||
318 | ||
319 | ||
320 | ||
321 | ||
322 | ||
323 | ||
324 | ||
325 | ||
326 | ||
327 | ||
328 | ||
329 | ||
330 | ||
331 | ||
332 | 1028 | |
333 | ||
334 | binocular_128.png | |
335 | file | |
336 | ||
337 | ||
338 | ||
339 | ||
340 | 2011-04-26T14:39:39.950111Z | |
341 | 145cb3ad1b7415eedb69cfde393e51cd | |
342 | 2010-06-10T13:38:22.246184Z | |
343 | 1 | |
344 | bonifaz.kaufmann | |
345 | has-props | |
346 | ||
347 | ||
348 | ||
349 | ||
350 | ||
351 | ||
352 | ||
353 | ||
354 | ||
355 | ||
356 | ||
357 | ||
358 | ||
359 | ||
360 | ||
361 | ||
362 | ||
363 | ||
364 | ||
365 | ||
366 | 12715 | |
367 | ||
368 | icon_small.png | |
369 | file | |
370 | ||
371 | ||
372 | ||
373 | ||
374 | 2011-04-26T14:39:39.950111Z | |
375 | eff590814520491fb4b6fd7ec5f1d684 | |
376 | 2010-06-10T13:38:22.246184Z | |
377 | 1 | |
378 | bonifaz.kaufmann | |
379 | has-props | |
380 | ||
381 | ||
382 | ||
383 | ||
384 | ||
385 | ||
386 | ||
387 | ||
388 | ||
389 | ||
390 | ||
391 | ||
392 | ||
393 | ||
394 | ||
395 | ||
396 | ||
397 | ||
398 | ||
399 | ||
400 | 3917 | |
401 | ||
402 | about_icon.png | |
403 | file | |
404 | ||
405 | ||
406 | ||
407 | ||
408 | 2011-04-26T14:39:39.950111Z | |
409 | d4e027ab6eb315cc2b0ba2dab2e24e35 | |
410 | 2010-07-01T15:28:34.713834Z | |
411 | 6 | |
412 | bonifaz.kaufmann | |
413 | has-props | |
414 | ||
415 | ||
416 | ||
417 | ||
418 | ||
419 | ||
420 | ||
421 | ||
422 | ||
423 | ||
424 | ||
425 | ||
426 | ||
427 | ||
428 | ||
429 | ||
430 | ||
431 | ||
432 | ||
433 | ||
434 | 7028 | |
435 | ||
436 | locker_default.png | |
437 | file | |
438 | ||
439 | ||
440 | ||
441 | ||
442 | 2011-04-26T14:39:39.954111Z | |
443 | dd17bebcbbc44483589c377723f70fed | |
444 | 2010-06-10T13:38:22.246184Z | |
445 | 1 | |
446 | bonifaz.kaufmann | |
447 | has-props | |
448 | ||
449 | ||
450 | ||
451 | ||
452 | ||
453 | ||
454 | ||
455 | ||
456 | ||
457 | ||
458 | ||
459 | ||
460 | ||
461 | ||
462 | ||
463 | ||
464 | ||
465 | ||
466 | ||
467 | ||
468 | 13615 | |
469 | ||
470 | device_list_item_background.xml | |
471 | file | |
472 | ||
473 | ||
474 | ||
475 | ||
476 | 2011-04-26T14:39:39.954111Z | |
477 | 2125a6a01b13fc5cd6781bb223ecedde | |
478 | 2010-06-10T13:38:22.246184Z | |
479 | 1 | |
480 | bonifaz.kaufmann | |
481 | ||
482 | ||
483 | ||
484 | ||
485 | ||
486 | ||
487 | ||
488 | ||
489 | ||
490 | ||
491 | ||
492 | ||
493 | ||
494 | ||
495 | ||
496 | ||
497 | ||
498 | ||
499 | ||
500 | ||
501 | ||
502 | 1444 | |
503 | ||
504 | icon_very_small.png | |
505 | file | |
506 | ||
507 | ||
508 | ||
509 | ||
510 | 2011-04-26T14:39:39.954111Z | |
511 | 483c2d43b225bf9429b92eba1951a749 | |
512 | 2010-06-10T13:38:22.246184Z | |
513 | 1 | |
514 | bonifaz.kaufmann | |
515 | has-props | |
516 | ||
517 | ||
518 | ||
519 | ||
520 | ||
521 | ||
522 | ||
523 | ||
524 | ||
525 | ||
526 | ||
527 | ||
528 | ||
529 | ||
530 | ||
531 | ||
532 | ||
533 | ||
534 | ||
535 | ||
536 | 2341 | |
537 | ||
538 | icon_background.png | |
539 | file | |
540 | ||
541 | ||
542 | ||
543 | ||
544 | 2011-04-26T14:39:39.958111Z | |
545 | aa7859931f822fa39d4d3cc0ec9f70b1 | |
546 | 2010-07-08T22:19:04.182431Z | |
547 | 10 | |
548 | bonifaz.kaufmann | |
549 | has-props | |
550 | ||
551 | ||
552 | ||
553 | ||
554 | ||
555 | ||
556 | ||
557 | ||
558 | ||
559 | ||
560 | ||
561 | ||
562 | ||
563 | ||
564 | ||
565 | ||
566 | ||
567 | ||
568 | ||
569 | ||
570 | 27483 | |
571 | ||
572 | locker_selected.png | |
573 | file | |
574 | ||
575 | ||
576 | ||
577 | ||
578 | 2011-04-26T14:39:39.958111Z | |
579 | 5da2a1c2af9376c072efb6012ecf2a76 | |
580 | 2010-06-10T13:38:22.246184Z | |
581 | 1 | |
582 | bonifaz.kaufmann | |
583 | has-props | |
584 | ||
585 | ||
586 | ||
587 | ||
588 | ||
589 | ||
590 | ||
591 | ||
592 | ||
593 | ||
594 | ||
595 | ||
596 | ||
597 | ||
598 | ||
599 | ||
600 | ||
601 | ||
602 | ||
603 | ||
604 | 11998 | |
605 | ||
606 | divider_vertical_dark.9.png | |
607 | file | |
608 | ||
609 | ||
610 | ||
611 | ||
612 | 2011-04-26T14:39:39.958111Z | |
613 | c0d0124c7d042404dde5a393480d6cb5 | |
614 | 2010-06-10T13:38:22.246184Z | |
615 | 1 | |
616 | bonifaz.kaufmann | |
617 | has-props | |
618 | ||
619 | ||
620 | ||
621 | ||
622 | ||
623 | ||
624 | ||
625 | ||
626 | ||
627 | ||
628 | ||
629 | ||
630 | ||
631 | ||
632 | ||
633 | ||
634 | ||
635 | ||
636 | ||
637 | ||
638 | 2805 | |
639 | ||
640 | device_list_item_default.xml | |
641 | file | |
642 | ||
643 | ||
644 | ||
645 | ||
646 | 2011-04-26T14:39:39.958111Z | |
647 | a3265baa9d29e746363c13f659e2868d | |
648 | 2010-06-10T13:38:22.246184Z | |
649 | 1 | |
650 | bonifaz.kaufmann | |
651 | ||
652 | ||
653 | ||
654 | ||
655 | ||
656 | ||
657 | ||
658 | ||
659 | ||
660 | ||
661 | ||
662 | ||
663 | ||
664 | ||
665 | ||
666 | ||
667 | ||
668 | ||
669 | ||
670 | ||
671 | ||
672 | 1147 | |
673 | ||
674 | add.png | |
675 | file | |
676 | ||
677 | ||
678 | ||
679 | ||
680 | 2011-04-26T14:39:39.962111Z | |
681 | 8a47a111749aa7fb6795fc6b172a2214 | |
682 | 2010-06-10T13:38:22.246184Z | |
683 | 1 | |
684 | bonifaz.kaufmann | |
685 | has-props | |
686 | ||
687 | ||
688 | ||
689 | ||
690 | ||
691 | ||
692 | ||
693 | ||
694 | ||
695 | ||
696 | ||
697 | ||
698 | ||
699 | ||
700 | ||
701 | ||
702 | ||
703 | ||
704 | ||
705 | ||
706 | 4713 | |
707 | ||
708 | icon.png | |
709 | file | |
710 | ||
711 | ||
712 | ||
713 | ||
714 | 2011-04-26T14:39:39.962111Z | |
715 | 47c66516f0c68212f06c64dfbbc5f1ec | |
716 | 2010-07-01T15:28:34.713834Z | |
717 | 6 | |
718 | bonifaz.kaufmann | |
719 | has-props | |
720 | ||
721 | ||
722 | ||
723 | ||
724 | ||
725 | ||
726 | ||
727 | ||
728 | ||
729 | ||
730 | ||
731 | ||
732 | ||
733 | ||
734 | ||
735 | ||
736 | ||
737 | ||
738 | ||
739 | ||
740 | 12643 | |
741 | ||
742 | bluetooth_ball_128.png | |
743 | file | |
744 | ||
745 | ||
746 | ||
747 | ||
748 | 2011-04-26T14:39:39.962111Z | |
749 | d630c0526b3ca17eeaa1846dd0db92c2 | |
750 | 2010-06-10T13:38:22.246184Z | |
751 | 1 | |
752 | bonifaz.kaufmann | |
753 | has-props | |
754 | ||
755 | ||
756 | ||
757 | ||
758 | ||
759 | ||
760 | ||
761 | ||
762 | ||
763 | ||
764 | ||
765 | ||
766 | ||
767 | ||
768 | ||
769 | ||
770 | ||
771 | ||
772 | ||
773 | ||
774 | 28312 | |
775 | ||
776 | list_btn_background.xml | |
777 | file | |
778 | ||
779 | ||
780 | ||
781 | ||
782 | 2011-04-26T14:39:39.962111Z | |
783 | f6fbc6b8d8054c4edd51de93743cda05 | |
784 | 2010-06-10T13:38:22.246184Z | |
785 | 1 | |
786 | bonifaz.kaufmann | |
787 | ||
788 | ||
789 | ||
790 | ||
791 | ||
792 | ||
793 | ||
794 | ||
795 | ||
796 | ||
797 | ||
798 | ||
799 | ||
800 | ||
801 | ||
802 | ||
803 | ||
804 | ||
805 | ||
806 | ||
807 | ||
808 | 1862 | |
809 | ||
810 | list_btn.xml | |
811 | file | |
812 | ||
813 | ||
814 | ||
815 | ||
816 | 2011-04-26T14:39:39.966111Z | |
817 | 401d779332a64a6e0736d95db3274a6d | |
818 | 2010-06-10T13:38:22.246184Z | |
819 | 1 | |
820 | bonifaz.kaufmann | |
821 | ||
822 | ||
823 | ||
824 | ||
825 | ||
826 | ||
827 | ||
828 | ||
829 | ||
830 | ||
831 | ||
832 | ||
833 | ||
834 | ||
835 | ||
836 | ||
837 | ||
838 | ||
839 | ||
840 | ||
841 | ||
842 | 1175 | |
843 | ||
844 | settings_128.png | |
845 | file | |
846 | ||
847 | ||
848 | ||
849 | ||
850 | 2011-04-26T14:39:39.966111Z | |
851 | 9cbb9b7d36b2c8560bb0ee565e5de396 | |
852 | 2010-06-10T13:38:22.246184Z | |
853 | 1 | |
854 | bonifaz.kaufmann | |
855 | has-props | |
856 | ||
857 | ||
858 | ||
859 | ||
860 | ||
861 | ||
862 | ||
863 | ||
864 | ||
865 | ||
866 | ||
867 | ||
868 | ||
869 | ||
870 | ||
871 | ||
872 | ||
873 | ||
874 | ||
875 | ||
876 | 23252 | |
877 |
Binary diff not shown
Binary diff not shown
Binary diff not shown
Binary diff not shown
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> | |
20 | ||
21 | <item android:state_pressed="true" | |
22 | android:drawable="@drawable/btn_selected" /> | |
23 | ||
24 | <item android:state_focused="true" | |
25 | android:drawable="@drawable/btn_focused" /> | |
26 | ||
27 | <item android:drawable="@drawable/btn_default" /> | |
28 | </selector> | |
29 | <!-- | |
30 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> | |
31 | ||
32 | <item android:state_focused="true" | |
33 | android:state_pressed="true" | |
34 | android:drawable="@drawable/btn_selected" /> | |
35 | ||
36 | <item android:state_focused="false" | |
37 | android:state_pressed="true" | |
38 | android:drawable="@drawable/btn_selected" /> | |
39 | ||
40 | <item android:state_focused="true" | |
41 | android:state_pressed="false" | |
42 | android:drawable="@drawable/btn_focused" /> | |
43 | ||
44 | <item android:drawable="@drawable/btn_default" /> | |
45 | </selector> | |
46 | -->⏎ |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <shape xmlns:android="http://schemas.android.com/apk/res/android"> | |
20 | <solid android:color="#333"/> | |
21 | </shape>⏎ |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <shape xmlns:android="http://schemas.android.com/apk/res/android"> | |
20 | <solid android:color="#700"/> | |
21 | </shape>⏎ |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <shape xmlns:android="http://schemas.android.com/apk/res/android"> | |
20 | <solid android:color="#080"/> | |
21 | </shape>⏎ |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> | |
20 | ||
21 | <item android:state_pressed="true" | |
22 | android:drawable="@drawable/btn_selected" /> | |
23 | ||
24 | <item android:state_selected="true" | |
25 | android:drawable="@drawable/btn_focused" /> | |
26 | ||
27 | <item android:state_focused="true" | |
28 | android:drawable="@drawable/btn_selected" /> | |
29 | ||
30 | <item android:drawable="@drawable/btn_default" /> | |
31 | </selector> | |
32 | <!-- android:state_selected focused --> | |
33 | <!-- android:state_selected pressed --> | |
34 | <!-- android:state_selected selected -->⏎ |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <shape xmlns:android="http://schemas.android.com/apk/res/android"> | |
20 | <solid android:color="@color/background"/> | |
21 | <padding android:left="1dp" android:top="1dp" | |
22 | android:right="1dp" android:bottom="1dp" /> | |
23 | </shape>⏎ |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <shape xmlns:android="http://schemas.android.com/apk/res/android"> | |
20 | <solid android:color="#600"/> | |
21 | </shape>⏎ |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <shape xmlns:android="http://schemas.android.com/apk/res/android"> | |
20 | <solid android:color="#070"/> | |
21 | </shape>⏎ |
Binary diff not shown
Binary diff not shown
Binary diff not shown
Binary diff not shown
Binary diff not shown
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> | |
20 | ||
21 | <item android:state_pressed="true" | |
22 | android:drawable="@drawable/locker_selected" /> | |
23 | ||
24 | <item | |
25 | android:drawable="@drawable/locker_default" /> | |
26 | </selector> |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> | |
20 | ||
21 | <item android:state_pressed="true" | |
22 | android:drawable="@drawable/list_btn_selected" /> | |
23 | ||
24 | <item android:state_focused="true" | |
25 | android:drawable="@drawable/list_btn_focused" /> | |
26 | ||
27 | <item android:state_selected="true" | |
28 | android:drawable="@drawable/list_btn_focused" /> | |
29 | ||
30 | <item android:drawable="@drawable/list_btn_default" /> | |
31 | </selector> | |
32 | <!-- | |
33 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> | |
34 | ||
35 | <item android:state_focused="true" | |
36 | android:state_pressed="true" | |
37 | android:drawable="@drawable/btn_selected" /> | |
38 | ||
39 | <item android:state_focused="false" | |
40 | android:state_pressed="true" | |
41 | android:drawable="@drawable/btn_selected" /> | |
42 | ||
43 | <item android:state_focused="true" | |
44 | android:state_pressed="false" | |
45 | android:drawable="@drawable/btn_focused" /> | |
46 | ||
47 | <item android:drawable="@drawable/btn_default" /> | |
48 | </selector> | |
49 | -->⏎ |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <shape xmlns:android="http://schemas.android.com/apk/res/android"> | |
20 | <solid android:color="#fff"/> | |
21 | </shape>⏎ |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <shape xmlns:android="http://schemas.android.com/apk/res/android"> | |
20 | <solid android:color="#D77"/> | |
21 | </shape>⏎ |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <shape xmlns:android="http://schemas.android.com/apk/res/android"> | |
20 | <solid android:color="#6D6"/> | |
21 | </shape>⏎ |
Binary diff not shown
Binary diff not shown
Binary diff not shown
Binary diff not shown
Binary diff not shown
Binary diff not shown
Binary diff not shown
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> | |
20 | ||
21 | <item android:state_pressed="true" | |
22 | android:drawable="@drawable/btn_selected" /> | |
23 | ||
24 | <item android:state_focused="true" | |
25 | android:drawable="@drawable/btn_focused" /> | |
26 | ||
27 | <item android:drawable="@drawable/btn_default" /> | |
28 | </selector> | |
29 | <!-- | |
30 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> | |
31 | ||
32 | <item android:state_focused="true" | |
33 | android:state_pressed="true" | |
34 | android:drawable="@drawable/btn_selected" /> | |
35 | ||
36 | <item android:state_focused="false" | |
37 | android:state_pressed="true" | |
38 | android:drawable="@drawable/btn_selected" /> | |
39 | ||
40 | <item android:state_focused="true" | |
41 | android:state_pressed="false" | |
42 | android:drawable="@drawable/btn_focused" /> | |
43 | ||
44 | <item android:drawable="@drawable/btn_default" /> | |
45 | </selector> | |
46 | -->⏎ |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <shape xmlns:android="http://schemas.android.com/apk/res/android"> | |
20 | <solid android:color="#333"/> | |
21 | </shape>⏎ |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <shape xmlns:android="http://schemas.android.com/apk/res/android"> | |
20 | <solid android:color="#700"/> | |
21 | </shape>⏎ |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <shape xmlns:android="http://schemas.android.com/apk/res/android"> | |
20 | <solid android:color="#080"/> | |
21 | </shape>⏎ |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> | |
20 | ||
21 | <item android:state_pressed="true" | |
22 | android:drawable="@drawable/btn_selected" /> | |
23 | ||
24 | <item android:state_selected="true" | |
25 | android:drawable="@drawable/btn_focused" /> | |
26 | ||
27 | <item android:state_focused="true" | |
28 | android:drawable="@drawable/btn_selected" /> | |
29 | ||
30 | <item android:drawable="@drawable/btn_default" /> | |
31 | </selector> | |
32 | <!-- android:state_selected focused --> | |
33 | <!-- android:state_selected pressed --> | |
34 | <!-- android:state_selected selected -->⏎ |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <shape xmlns:android="http://schemas.android.com/apk/res/android"> | |
20 | <solid android:color="@color/background"/> | |
21 | <padding android:left="1dp" android:top="1dp" | |
22 | android:right="1dp" android:bottom="1dp" /> | |
23 | </shape>⏎ |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <shape xmlns:android="http://schemas.android.com/apk/res/android"> | |
20 | <solid android:color="#600"/> | |
21 | </shape>⏎ |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <shape xmlns:android="http://schemas.android.com/apk/res/android"> | |
20 | <solid android:color="#070"/> | |
21 | </shape>⏎ |
Binary diff not shown
Binary diff not shown
Binary diff not shown
Binary diff not shown
Binary diff not shown
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> | |
20 | ||
21 | <item android:state_pressed="true" | |
22 | android:drawable="@drawable/locker_selected" /> | |
23 | ||
24 | <item | |
25 | android:drawable="@drawable/locker_default" /> | |
26 | </selector> |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> | |
20 | ||
21 | <item android:state_pressed="true" | |
22 | android:drawable="@drawable/list_btn_selected" /> | |
23 | ||
24 | <item android:state_focused="true" | |
25 | android:drawable="@drawable/list_btn_focused" /> | |
26 | ||
27 | <item android:state_selected="true" | |
28 | android:drawable="@drawable/list_btn_focused" /> | |
29 | ||
30 | <item android:drawable="@drawable/list_btn_default" /> | |
31 | </selector> | |
32 | <!-- | |
33 | <selector xmlns:android="http://schemas.android.com/apk/res/android"> | |
34 | ||
35 | <item android:state_focused="true" | |
36 | android:state_pressed="true" | |
37 | android:drawable="@drawable/btn_selected" /> | |
38 | ||
39 | <item android:state_focused="false" | |
40 | android:state_pressed="true" | |
41 | android:drawable="@drawable/btn_selected" /> | |
42 | ||
43 | <item android:state_focused="true" | |
44 | android:state_pressed="false" | |
45 | android:drawable="@drawable/btn_focused" /> | |
46 | ||
47 | <item android:drawable="@drawable/btn_default" /> | |
48 | </selector> | |
49 | -->⏎ |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <shape xmlns:android="http://schemas.android.com/apk/res/android"> | |
20 | <solid android:color="#fff"/> | |
21 | </shape>⏎ |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <shape xmlns:android="http://schemas.android.com/apk/res/android"> | |
20 | <solid android:color="#D77"/> | |
21 | </shape>⏎ |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <shape xmlns:android="http://schemas.android.com/apk/res/android"> | |
20 | <solid android:color="#6D6"/> | |
21 | </shape>⏎ |
Binary diff not shown
Binary diff not shown
Binary diff not shown
Binary diff not shown
Binary diff not shown
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | ||
20 | <LinearLayout | |
21 | xmlns:android="http://schemas.android.com/apk/res/android" | |
22 | android:orientation="vertical" | |
23 | android:layout_width="fill_parent" | |
24 | android:layout_height="wrap_content"> | |
25 | ||
26 | <ScrollView android:id="@+id/scrollView" | |
27 | android:layout_width="fill_parent" | |
28 | android:layout_height="wrap_content" | |
29 | android:paddingTop="2dp" | |
30 | android:paddingBottom="10dp" | |
31 | android:paddingLeft="6dp" | |
32 | android:paddingRight="10dp"> | |
33 | ||
34 | <LinearLayout | |
35 | android:layout_width="fill_parent" | |
36 | android:layout_height="fill_parent" | |
37 | android:orientation="vertical" | |
38 | android:paddingRight="10dp" | |
39 | > | |
40 | <TextView | |
41 | android:layout_width="fill_parent" | |
42 | android:layout_height="wrap_content" | |
43 | android:padding="3dp" | |
44 | android:textSize="12dp" | |
45 | android:gravity="left" | |
46 | android:text="@string/about_changelog" /> | |
47 | ||
48 | <View | |
49 | android:layout_width="fill_parent" | |
50 | android:layout_height="1dp" | |
51 | android:background="#ccc" | |
52 | android:layout_margin="10dp" /> | |
53 | ||
54 | <TextView | |
55 | android:layout_width="fill_parent" | |
56 | android:layout_height="wrap_content" | |
57 | android:padding="3dp" | |
58 | android:textSize="16sp" | |
59 | android:gravity="center" | |
60 | android:autoLink="web" | |
61 | android:text="@string/about_msg" /> | |
62 | ||
63 | </LinearLayout> | |
64 | </ScrollView> | |
65 | </LinearLayout> |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <android.view.SurfaceView xmlns:android="http://schemas.android.com/apk/res/android" | |
2 | android:id="@+id/preview" | |
3 | android:layout_width="fill_parent" | |
4 | android:layout_height="fill_parent" | |
5 | > | |
6 | </android.view.SurfaceView>⏎ |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
20 | android:layout_width="fill_parent" | |
21 | android:layout_height="wrap_content" | |
22 | android:orientation="horizontal" | |
23 | android:paddingTop="8dp" | |
24 | android:paddingBottom="8dp" | |
25 | android:background="@drawable/device_list_item_background" | |
26 | > | |
27 | <Button android:id="@+id/list_btn" | |
28 | android:layout_width="64dp" | |
29 | android:layout_height="64dp" | |
30 | android:layout_centerVertical="true" | |
31 | android:layout_gravity="center" | |
32 | android:scaleType="fitCenter" | |
33 | android:background="@drawable/list_btn" | |
34 | android:focusable="false" > | |
35 | </Button> | |
36 | ||
37 | <View android:id="@+id/divider" | |
38 | android:layout_width="1px" | |
39 | android:layout_height="fill_parent" | |
40 | android:layout_marginRight="6dp" | |
41 | android:layout_marginLeft="8dp" | |
42 | android:background="@drawable/divider_vertical_dark" | |
43 | /> | |
44 | ||
45 | <RelativeLayout | |
46 | android:layout_width="fill_parent" | |
47 | android:layout_height="wrap_content" | |
48 | android:paddingLeft="5dp" | |
49 | > | |
50 | ||
51 | <View android:id="@+id/disconnected" | |
52 | android:layout_width="14dp" | |
53 | android:layout_height="14dp" | |
54 | android:layout_marginRight="8dp" | |
55 | android:layout_marginTop="5dp" | |
56 | android:layout_alignParentTop="true" | |
57 | android:layout_alignParentRight="true" | |
58 | android:background="@color/disconnected_on"> | |
59 | </View> | |
60 | ||
61 | <View android:id="@+id/connected" | |
62 | android:layout_width="14dp" | |
63 | android:layout_height="14dp" | |
64 | android:layout_marginRight="8dp" | |
65 | android:layout_marginTop="5dp" | |
66 | android:layout_alignParentTop="true" | |
67 | android:layout_toLeftOf="@id/disconnected" | |
68 | android:background="@color/connected_off"> | |
69 | </View> | |
70 | ||
71 | <Button android:id="@+id/connect_btn" | |
72 | android:layout_width="100dp" | |
73 | android:layout_height="50dp" | |
74 | android:layout_marginTop="8dp" | |
75 | android:layout_marginRight="4dp" | |
76 | android:layout_alignParentRight="true" | |
77 | android:layout_below="@id/disconnected" | |
78 | android:focusable="false" | |
79 | android:text="@string/connect"> | |
80 | </Button> | |
81 | ||
82 | ||
83 | <TextView android:id="@+id/device_address" | |
84 | android:layout_width="fill_parent" | |
85 | android:layout_height="wrap_content" | |
86 | android:layout_marginTop="5dp" | |
87 | android:text="00:00:00:00:00:00:00" | |
88 | android:textColor="@color/light_gray_text" | |
89 | android:layout_alignParentTop="true" | |
90 | android:layout_alignParentLeft="true" | |
91 | android:layout_toLeftOf="@id/disconnected"> | |
92 | </TextView> | |
93 | ||
94 | <TextView android:id="@+id/device_name" | |
95 | android:layout_width="fill_parent" | |
96 | android:layout_height="wrap_content" | |
97 | android:layout_marginTop="5dp" | |
98 | android:text="FireFly-2" | |
99 | android:textStyle="bold" | |
100 | android:textColor="@color/light_gray_text" | |
101 | android:textSize="@dimen/device_name_size" | |
102 | android:layout_below="@id/device_address" | |
103 | android:layout_alignParentLeft="true" | |
104 | android:layout_toLeftOf="@id/connect_btn" > | |
105 | </TextView> | |
106 | ||
107 | ||
108 | </RelativeLayout> | |
109 | </LinearLayout>⏎ |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | ||
20 | <ListView xmlns:android="http://schemas.android.com/apk/res/android" | |
21 | android:layout_width="fill_parent" | |
22 | android:layout_height="fill_parent" | |
23 | android:divider="#000" | |
24 | android:dividerHeight="2px" | |
25 | android:id="@id/android:list" | |
26 | android:background="@color/background_screen" | |
27 | android:cacheColorHint="@color/background_screen" | |
28 | > | |
29 | </ListView> |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | ||
20 | <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
21 | android:id="@+id/device" | |
22 | android:layout_width="fill_parent" | |
23 | android:layout_height="wrap_content" | |
24 | android:background="@drawable/device_list_item_background" | |
25 | android:padding="5dp" | |
26 | > | |
27 | ||
28 | <ImageView android:id="@+id/bt_icon" | |
29 | android:layout_width="64dp" | |
30 | android:layout_height="64dp" | |
31 | android:layout_marginRight="8dp" | |
32 | android:src="@drawable/bluetooth_ball_128" | |
33 | android:layout_alignParentTop="true" | |
34 | android:layout_alignParentLeft="true" | |
35 | /> | |
36 | ||
37 | <TextView android:id="@+id/device_address" | |
38 | android:layout_width="fill_parent" | |
39 | android:layout_height="wrap_content" | |
40 | android:layout_alignParentTop="true" | |
41 | android:layout_toRightOf="@id/bt_icon" | |
42 | android:textSize="18sp" | |
43 | android:textColor="@color/light_gray_text" | |
44 | android:fadingEdge="vertical" /> | |
45 | ||
46 | <TextView android:id="@+id/device_name" | |
47 | android:layout_width="fill_parent" | |
48 | android:layout_height="wrap_content" | |
49 | android:layout_below="@id/device_address" | |
50 | android:layout_toRightOf="@id/bt_icon" | |
51 | android:textSize="16sp" | |
52 | android:textColor="@color/light_gray_text" | |
53 | android:textStyle="bold" | |
54 | android:fadingEdge="vertical" /> | |
55 | ||
56 | </RelativeLayout> |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
20 | android:layout_width="fill_parent" | |
21 | android:layout_height="wrap_content" | |
22 | android:minHeight="90dp" | |
23 | android:orientation="horizontal" | |
24 | android:background="@drawable/device_list_item_background" | |
25 | > | |
26 | ||
27 | <LinearLayout | |
28 | android:layout_width="0dp" | |
29 | android:layout_height="wrap_content" | |
30 | android:orientation="vertical" | |
31 | android:paddingTop="10dp" | |
32 | android:paddingBottom="10dp" | |
33 | android:paddingLeft="10dp" | |
34 | android:paddingRight="4dp" | |
35 | android:layout_weight="60" > | |
36 | ||
37 | <TextView android:id="@+id/event_flag" | |
38 | android:layout_width="fill_parent" | |
39 | android:layout_height="wrap_content" | |
40 | android:textSize="14sp" | |
41 | android:text="id" | |
42 | android:textColor="@color/light_gray_text" | |
43 | android:textStyle="bold" | |
44 | /> | |
45 | ||
46 | <TextView android:id="@+id/event_name" | |
47 | android:layout_width="fill_parent" | |
48 | android:layout_height="wrap_content" | |
49 | android:textSize="14sp" | |
50 | android:text="name" | |
51 | android:textColor="#cc3" | |
52 | android:textStyle="bold" | |
53 | /> | |
54 | ||
55 | <TextView android:id="@+id/event_desc" | |
56 | android:layout_width="fill_parent" | |
57 | android:layout_height="wrap_content" | |
58 | android:textSize="12sp" | |
59 | android:text="description" | |
60 | android:textColor="@color/light_gray_text" | |
61 | /> | |
62 | </LinearLayout> | |
63 | ||
64 | ||
65 | <LinearLayout android:id="@+id/event" | |
66 | android:layout_width="0dp" | |
67 | android:layout_height="fill_parent" | |
68 | android:padding="5dp" | |
69 | android:orientation="vertical" | |
70 | android:background="@color/background_event_feedback" | |
71 | android:layout_weight="40" > | |
72 | </LinearLayout> | |
73 | ||
74 | ||
75 | </LinearLayout> |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
20 | android:layout_width="fill_parent" | |
21 | android:layout_height="fill_parent" | |
22 | android:background="@color/background_screen"> | |
23 | ||
24 | <LinearLayout android:id="@+id/button_bar" | |
25 | android:orientation="horizontal" | |
26 | android:layout_width="fill_parent" | |
27 | android:layout_height="wrap_content" | |
28 | android:layout_marginTop="3px" | |
29 | android:layout_alignParentBottom="true"> | |
30 | ||
31 | <FrameLayout | |
32 | android:layout_width="fill_parent" | |
33 | android:layout_height="100dp" | |
34 | android:layout_weight="1" | |
35 | > | |
36 | <ImageButton | |
37 | android:id="@+id/add_event_btn" | |
38 | android:layout_height="fill_parent" | |
39 | android:layout_width="fill_parent" | |
40 | android:paddingBottom="20dp" | |
41 | android:layout_gravity="center" | |
42 | android:scaleType="fitCenter" | |
43 | android:background="@drawable/btn_background" | |
44 | android:src="@drawable/add" | |
45 | android:onClick="addEventBtnClick"> | |
46 | </ImageButton> | |
47 | ||
48 | <TextView | |
49 | android:layout_width="fill_parent" | |
50 | android:layout_height="wrap_content" | |
51 | android:layout_gravity="bottom" | |
52 | android:text="@string/add_event" | |
53 | android:paddingBottom="3dp" | |
54 | android:gravity="center" | |
55 | android:textSize="@dimen/button_font_size" | |
56 | android:onClick="addEventBtnClick"> | |
57 | </TextView> | |
58 | </FrameLayout> | |
59 | ||
60 | ||
61 | </LinearLayout> | |
62 | ||
63 | <ListView android:id="@+id/android:list" | |
64 | android:layout_width="fill_parent" | |
65 | android:layout_height="fill_parent" | |
66 | android:layout_alignParentTop="true" | |
67 | android:layout_above="@id/button_bar" | |
68 | android:divider="#000" | |
69 | android:dividerHeight="2px" | |
70 | android:drawSelectorOnTop="false" | |
71 | android:scrollbars="none" | |
72 | android:cacheColorHint="@color/background_screen" | |
73 | > | |
74 | </ListView> | |
75 | ||
76 | <ScrollView android:id="@id/android:empty" | |
77 | android:layout_height="fill_parent" | |
78 | android:layout_width="fill_parent" | |
79 | android:scrollbars="vertical" | |
80 | android:layout_above="@id/button_bar" | |
81 | > | |
82 | <TextView | |
83 | android:layout_width="fill_parent" | |
84 | android:layout_height="fill_parent" | |
85 | android:padding="6dp" | |
86 | android:textSize="15sp" | |
87 | android:text="@string/no_events"/> | |
88 | </ScrollView> | |
89 | ||
90 | </RelativeLayout> | |
91 |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
20 | android:orientation="vertical" | |
21 | android:layout_width="fill_parent" | |
22 | android:layout_height="fill_parent" | |
23 | > | |
24 | ||
25 | <TextView | |
26 | android:layout_height="wrap_content" | |
27 | android:text="@string/plugin_info_msg" | |
28 | android:layout_width="fill_parent" | |
29 | android:layout_gravity="center" | |
30 | android:padding="15dp" | |
31 | android:gravity="center" | |
32 | android:textColor="#ee4" | |
33 | android:textSize="20sp" | |
34 | android:textStyle="bold"> | |
35 | </TextView> | |
36 | ||
37 | ||
38 | </LinearLayout> |
0 | 0 | <?xml version="1.0" encoding="utf-8"?> |
1 | <android.view.SurfaceView xmlns:android="http://schemas.android.com/apk/res/android" | |
2 | android:id="@+id/preview" | |
3 | android:layout_width="fill_parent" | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | ||
20 | <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
21 | android:id="@+id/root_layout" | |
22 | android:layout_width="fill_parent" | |
23 | android:layout_height="fill_parent" | |
24 | android:background="#111"> | |
25 | ||
26 | <LinearLayout android:id="@+id/button_bar" | |
27 | android:orientation="horizontal" | |
28 | android:layout_width="fill_parent" | |
29 | android:layout_height="wrap_content" | |
30 | android:layout_marginTop="1px" | |
31 | android:layout_alignParentBottom="true"> | |
32 | ||
33 | <FrameLayout | |
34 | android:layout_width="fill_parent" | |
35 | android:layout_height="100dp" | |
36 | android:layout_weight="1" | |
37 | android:layout_marginRight="1dp" | |
38 | > | |
39 | <ImageButton | |
40 | android:id="@+id/add_device_btn" | |
41 | android:layout_height="fill_parent" | |
42 | android:layout_width="fill_parent" | |
43 | style="@style/image_button_with_bottom_text" | |
44 | android:src="@drawable/add"> | |
45 | </ImageButton> | |
46 | ||
47 | <TextView | |
48 | android:id="@+id/add_device_btn_text" | |
49 | android:layout_width="fill_parent" | |
50 | android:layout_height="wrap_content" | |
51 | android:layout_gravity="bottom" | |
52 | android:text="@string/add_bt_device" | |
53 | android:paddingBottom="3dp" | |
54 | android:gravity="center" | |
55 | android:textSize="@dimen/button_font_size"> | |
56 | </TextView> | |
57 | </FrameLayout> | |
58 | ||
59 | <FrameLayout | |
60 | android:layout_width="fill_parent" | |
61 | android:layout_height="fill_parent" | |
62 | android:layout_weight="1" | |
63 | android:layout_marginRight="1dp" | |
64 | > | |
65 | <ImageButton | |
66 | android:id="@+id/monitoring_btn" | |
67 | android:layout_height="fill_parent" | |
68 | android:layout_width="fill_parent" | |
69 | style="@style/image_button_with_bottom_text" | |
70 | android:src="@drawable/binocular_128"> | |
71 | </ImageButton> | |
72 | ||
73 | <TextView | |
74 | android:id="@+id/monitoring_btn_text" | |
75 | android:layout_width="fill_parent" | |
76 | android:layout_height="wrap_content" | |
77 | android:layout_gravity="bottom" | |
78 | android:text="@string/monitoring" | |
79 | android:paddingBottom="3dp" | |
80 | android:gravity="center" | |
81 | android:textSize="@dimen/button_font_size"> | |
82 | </TextView> | |
83 | </FrameLayout> | |
84 | ||
85 | <FrameLayout | |
86 | android:id="@+id/chopper_btn_layout" | |
87 | android:layout_width="fill_parent" | |
88 | android:layout_height="fill_parent" | |
89 | android:layout_weight="1"> | |
90 | <Button | |
91 | android:id="@+id/launch_chopper_btn" | |
92 | android:layout_width="fill_parent" | |
93 | android:layout_height="wrap_content" | |
94 | android:text="Launch Chopper" | |
95 | android:src="@drawable/add"> | |
96 | </Button> | |
97 | </FrameLayout> | |
98 | ||
99 | <FrameLayout | |
100 | android:id="@+id/settings_btn_layout" | |
101 | android:layout_width="fill_parent" | |
102 | android:layout_height="fill_parent" | |
103 | android:layout_weight="1" | |
104 | > | |
105 | <ImageButton | |
106 | android:id="@+id/settings_btn" | |
107 | android:layout_height="fill_parent" | |
108 | android:layout_width="fill_parent" | |
109 | style="@style/image_button_with_bottom_text" | |
110 | android:src="@drawable/settings_128"> | |
111 | </ImageButton> | |
112 | ||
113 | <TextView | |
114 | android:id="@+id/settings_btn_text" | |
115 | android:layout_width="fill_parent" | |
116 | android:layout_height="wrap_content" | |
117 | android:layout_gravity="bottom" | |
118 | android:text="@string/settings" | |
119 | android:paddingBottom="3dp" | |
120 | android:gravity="center" | |
121 | android:textSize="@dimen/button_font_size"> | |
122 | </TextView> | |
123 | </FrameLayout> | |
124 | </LinearLayout> | |
125 | ||
126 | ||
127 | <ListView android:id="@+id/android:list" | |
128 | android:layout_width="fill_parent" | |
4 | 129 | android:layout_height="fill_parent" |
130 | android:layout_alignParentTop="true" | |
131 | android:layout_above="@id/button_bar" | |
132 | android:divider="#0000" | |
133 | android:dividerHeight="2px" | |
134 | android:drawSelectorOnTop="false" | |
135 | ||
5 | 136 | > |
6 | </android.view.SurfaceView>⏎ | |
137 | </ListView> | |
138 | ||
139 | ||
140 | <FrameLayout android:id="@id/android:empty" | |
141 | android:layout_width="fill_parent" | |
142 | android:layout_height="fill_parent" | |
143 | android:layout_above="@id/button_bar" | |
144 | > | |
145 | ||
146 | <ImageView | |
147 | android:layout_width="fill_parent" | |
148 | android:layout_height="fill_parent" | |
149 | android:src="@drawable/icon_background" | |
150 | android:layout_gravity="center" | |
151 | android:padding="20dp" | |
152 | android:scaleType="center" | |
153 | /> | |
154 | ||
155 | <TextView | |
156 | android:layout_width="fill_parent" | |
157 | android:layout_height="fill_parent" | |
158 | android:padding="6dp" | |
159 | android:textSize="15sp" | |
160 | android:text="@string/no_devices"/> | |
161 | ||
162 | </FrameLayout> | |
163 | </RelativeLayout>⏎ |
0 | <?xml version="1.0" encoding="utf-8"?> | |
1 | <!-- | |
2 | Amarino - A prototyping software toolkit for Android and Arduino | |
3 | Copyright (c) 2010 Bonifaz Kaufmann. All right reserved. | |
4 | ||
5 | This application and its library is free software; you can redistribute | |
6 | it and/or modify it under the terms of the GNU Lesser General Public | |
7 | License as published by the Free Software Foundation; either | |
8 | version 3 of the License, or (at your option) any later version. | |
9 | ||
10 | This library is distributed in the hope that it will be useful, | |
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |
13 | Lesser General Public License for more details. | |
14 | ||
15 | You should have received a copy of the GNU Lesser General Public | |
16 | License along with this library; if not, write to the Free Software | |
17 | Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA | |
18 | --> | |
19 | ||
20 | <RelativeLayout | |
21 | xmlns:android="http://schemas.android.com/apk/res/android" | |
22 | android:layout_width="fill_parent" | |
23 | android:layout_height="fill_parent" | |
24 | android:background="#121212"> | |
25 | ||
26 | ||
27 | <LinearLayout android:id="@+id/btn_panel" | |
28 | android:layout_width="fill_parent" | |
29 | android:layout_height="wrap_content" | |
30 | android:layout_alignParentBottom="true" | |
31 | android:orientation="horizontal" | |
32 | > | |
33 | ||
34 | <Button | |
35 | android:id="@+id/send_btn" | |
36 | android:layout_width="fill_parent" | |
37 | android:layout_height="wrap_content" | |
38 | android:layout_weight="1" | |
39 | android:text="Send" | |
40 | android:textColor="@color/monitoring_btn_text" | |
41 | android:textSize="20sp" | |
42 | android:padding="16dp" | |
43 | android:layout_marginRight="1dp" | |
44 | android:focusable="true" | |
45 | android:background="@drawable/btn_background" | |
46 | /> | |
47 | ||
48 | <Button | |
49 | android:id="@+id/clear_btn" | |
50 | android:layout_width="fill_parent" | |
51 | android:layout_height="wrap_content" | |
52 | android:layout_weight="1" | |
53 | android:text="Clear Log" | |
54 | android:textColor="@color/monitoring_btn_text" | |
55 | android:textSize="20sp" | |
56 | android:padding="16dp" | |
57 | android:focusable="true" | |
58 | android:background="@drawable/btn_background" | |
59 | /> | |
60 | ||
61 | </LinearLayout> | |
62 | ||
63 | <LinearLayout android:id="@+id/edit_panel" | |
64 | android:layout_width="fill_parent" | |
65 | android:layout_height="wrap_content" | |
66 | android:layout_above="@id/btn_panel" | |
67 | android:layout_marginBottom="2dp" | |
68 | android:orientation="horizontal" | |
69 | > | |
70 | ||
71 | <Button | |
72 | android:id="@+id/flag_btn" | |
73 | android:layout_width="70dp" | |
74 | android:layout_height="wrap_content" | |
75 | android:text="Flag: a" | |
76 | android:textColor="@color/monitoring_btn_text" | |
77 | android:textSize="16sp" | |
78 | android:paddingTop="12dp" | |
79 | android:paddingBottom="12dp" | |
80 | android:paddingLeft="2dp" | |
81 | android:paddingRight="2dp" | |
82 | android:tag="a" | |
83 |