Back to project page diceplus_test.
The source code is released under:
This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a co...
If you think the Android project diceplus_test listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.example.dice_test2; // www . j av a2s. c om import us.dicepl.android.sdk.Die; import us.dicepl.android.sdk.responsedata.TouchData; import android.util.Log; public class TouchReadoutHandler extends DiceEventHandler { public static void onTouchReadout(Die die, TouchData readout, Exception exception, MainActivity _mainActivity) { final MainActivity mainActivity = _mainActivity; final int currentStateMask = readout.current_state_mask; final int changeMask = readout.change_mask; final long ts = readout.timestamp; Log.d(TAG, "touch readout"); mainActivity.runOnUiThread(new Runnable() { @Override public void run() { mainActivity.touchData.setText("Touch: ts: " + ts + ", State mask: " + Integer.toBinaryString(currentStateMask) + ", Change mask: " + Integer.toBinaryString(changeMask)); } }); } }