1 package de
.rmdir
.ms2debounce
;
3 import android
.app
.Activity
;
4 import android
.app
.Dialog
;
5 import android
.app
.AlertDialog
;
6 import android
.os
.Bundle
;
7 import android
.content
.Intent
;
8 import android
.content
.DialogInterface
;
9 import android
.widget
.TextView
;
10 import android
.widget
.EditText
;
11 import android
.widget
.Button
;
12 import android
.widget
.CheckBox
;
13 import android
.view
.View
;
14 import android
.view
.Menu
;
15 import android
.view
.MenuInflater
;
16 import android
.view
.MenuItem
;
18 public class MS2Debounce
extends Activity
20 private DebounceModuleHelper module
;
25 module
= new DebounceModuleHelper(this);
29 public void onCreate(Bundle savedInstanceState
)
31 super.onCreate(savedInstanceState
);
33 //if (!module.isLoaded()) {
34 // module.loadModule();
37 setContentView(R
.layout
.main
);
41 private void updateUI() {
44 // Calling these is expensive, so cache the result...
45 boolean loaded
= module
.isLoaded();
46 boolean safe_to_load
= module
.is_safe_to_load();
47 int debounce_delay
= module
.getDelay();
49 TextView text
= (TextView
)findViewById(R
.id
.text
);
50 text
.setText("Current status:\n\nModule loaded: " + loaded
+ "\ndebounce_delay: " + debounce_delay
+ "ms\nsafe_to_load: " + safe_to_load
);
52 //EditText textDelay = (EditText)findViewById(R.id.debounce_delay);
53 //textDelay.setText(module.getSavedDelay());
55 Button reload
= (Button
)findViewById(R
.id
.reload
);
56 if (loaded
&& module
.getSavedDelay() != debounce_delay
) {
57 reload
.setEnabled(true);
59 reload
.setEnabled(false);
62 Button load
= (Button
)findViewById(R
.id
.load
);
64 load
.setEnabled(false);
66 load
.setEnabled(true);
69 Button unload
= (Button
)findViewById(R
.id
.unload
);
71 unload
.setEnabled(true);
73 unload
.setEnabled(false);
76 CheckBox on_boot
= (CheckBox
)findViewById(R
.id
.on_boot
);
77 on_boot
.setChecked(module
.get_on_boot());
79 on_boot
.setEnabled(true);
81 on_boot
.setEnabled(false);
85 private void disableUI() {
86 Button reload
= (Button
)findViewById(R
.id
.reload
);
87 reload
.setEnabled(false);
89 Button load
= (Button
)findViewById(R
.id
.load
);
90 load
.setEnabled(false);
92 Button unload
= (Button
)findViewById(R
.id
.unload
);
93 unload
.setEnabled(false);
95 CheckBox on_boot
= (CheckBox
)findViewById(R
.id
.on_boot
);
96 on_boot
.setEnabled(false);
99 public void loadModule(View view
) {
101 if (!module
.isLoaded()) {
107 public void unloadModule(View view
) {
109 if (module
.isLoaded()) {
110 module
.unloadModule();
115 public void reloadModule(View view
) {
117 if (module
.isLoaded()) {
118 module
.unloadModule();
120 if (!module
.isLoaded()) {
126 public void toggle_on_boot(View view
) {
127 CheckBox on_boot
= (CheckBox
)view
;
129 module
.set_on_boot(on_boot
.isChecked());
133 public boolean onCreateOptionsMenu(Menu menu
) {
134 MenuInflater inflater
= getMenuInflater();
135 inflater
.inflate(R
.menu
.main
, menu
);
140 public boolean onOptionsItemSelected(MenuItem item
) {
141 switch (item
.getItemId()) {
146 return super.onOptionsItemSelected(item
);
150 protected Dialog
onCreateDialog(int id
) {
153 AlertDialog
.Builder about
= new AlertDialog
.Builder(this);
154 about
.setMessage("Milestone 2 Debounce\n\n(C) 2011 Michael Gernoth <michael@gernoth.net>\n\nThis program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation version 2 of the License.\n\nThis program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA")
156 .setPositiveButton("Ok", new DialogInterface
.OnClickListener() {
157 public void onClick(DialogInterface dialog
, int id
) {
161 dlg
= about
.create();