android:layout_height="fill_parent"
>
<TextView
+ android:id="@+id/text"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
- android:text="You will soon be able to set the debounce_delay here."
+ android:text=""
/>
</LinearLayout>
import android.app.Activity;
import android.os.Bundle;
import android.content.Intent;
+import android.widget.TextView;
public class MS2Debounce extends Activity
{
}
setContentView(R.layout.main);
+
+ TextView text = (TextView)findViewById(R.id.text);
+ text.setText("You will soon be able to set the debounce_delay here.\nModule loaded: " + module.isLoaded() + "\ndebounce_delay: " + module.getDelay() + "ms");
}
}