]> git.zerfleddert.de Git - ms2-fixes/blobdiff - MS2Debounce/src/de/rmdir/ms2debounce/MS2Debounce.java
working edittext
[ms2-fixes] / MS2Debounce / src / de / rmdir / ms2debounce / MS2Debounce.java
index 3b4804cf67c506594010ac58aa459a99cfc1dd31..2771ef2a11669ed6149497e2975cb2910cd56d78 100644 (file)
@@ -7,12 +7,15 @@ import android.os.Bundle;
 import android.content.Intent;
 import android.content.DialogInterface;
 import android.widget.TextView;
+import android.widget.EditText;
 import android.widget.Button;
 import android.widget.CheckBox;
 import android.view.View;
 import android.view.Menu;
 import android.view.MenuInflater;
 import android.view.MenuItem;
+import android.text.TextWatcher;
+import android.text.Editable;
 
 public class MS2Debounce extends Activity
 {
@@ -29,26 +32,53 @@ public class MS2Debounce extends Activity
        {
                super.onCreate(savedInstanceState);
 
-               //if (!module.isLoaded()) {
-               //      module.loadModule();
-               //}
-
                setContentView(R.layout.main);
+
+               EditText textDelay = (EditText)findViewById(R.id.debounce_delay);
+               textDelay.addTextChangedListener(new TextWatcher() {
+                       @Override
+                       public void afterTextChanged(Editable delay) {
+                               if (delay.toString().length() > 0) {
+                                       module.setSavedDelay(Integer.parseInt(delay.toString()));
+
+                                       Button reload = (Button)findViewById(R.id.reload);
+                                       if (module.isLoaded() && module.getSavedDelay() != module.getDelay()) {
+                                               reload.setEnabled(true);
+                                       } else {
+                                               reload.setEnabled(false);
+                                       }
+                               }
+                       }
+
+                       @Override
+                       public void beforeTextChanged(CharSequence s, int start, int count, int after) {
+                       }
+
+                       @Override
+                       public void onTextChanged(CharSequence s, int start, int before, int count) {
+                       }
+               });
+
                updateUI();
        }
 
        private void updateUI() {
-               TextView text = (TextView)findViewById(R.id.text);
-
                disableUI();
 
+               // Calling these is expensive, so cache the result...
                boolean loaded = module.isLoaded();
                boolean safe_to_load = module.is_safe_to_load();
+               int debounce_delay = module.getDelay();
 
-               text.setText("Current status:\n\nModule loaded: " + loaded + "\ndebounce_delay: " + module.getDelay() + "ms\nsafe_to_load: " + safe_to_load);
+               TextView text = (TextView)findViewById(R.id.text);
+               text.setText("Current status:\n\nModule loaded: " + loaded + "\ndebounce_delay: " + debounce_delay + "ms\nsafe_to_load: " + safe_to_load);
+
+               EditText textDelay = (EditText)findViewById(R.id.debounce_delay);
+               textDelay.setText(Integer.toString(module.getSavedDelay()));
+               textDelay.setEnabled(true);
 
                Button reload = (Button)findViewById(R.id.reload);
-               if (loaded) {
+               if (loaded && module.getSavedDelay() != debounce_delay) {
                        reload.setEnabled(true);
                } else {
                        reload.setEnabled(false);
@@ -69,6 +99,7 @@ public class MS2Debounce extends Activity
                }
 
                CheckBox on_boot = (CheckBox)findViewById(R.id.on_boot);
+               on_boot.setChecked(module.get_on_boot());
                if (safe_to_load) {
                        on_boot.setEnabled(true);
                } else {
@@ -77,6 +108,9 @@ public class MS2Debounce extends Activity
        }
 
        private void disableUI() {
+               EditText textDelay = (EditText)findViewById(R.id.debounce_delay);
+               textDelay.setEnabled(false);
+
                Button reload = (Button)findViewById(R.id.reload);
                reload.setEnabled(false);
 
@@ -117,6 +151,12 @@ public class MS2Debounce extends Activity
                updateUI();
        }
 
+       public void toggle_on_boot(View view) {
+               CheckBox on_boot = (CheckBox)view;
+
+               module.set_on_boot(on_boot.isChecked());
+       }
+
        @Override
        public boolean onCreateOptionsMenu(Menu menu) {
                MenuInflater inflater = getMenuInflater();
Impressum, Datenschutz