Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class MainActivity extends ActionBarActivity implements DrawingViewInterface {
- @Override
- public void onActionFinished(float movedX, float movedY) {
- String Xcoord = String.valueOf(movedX);
- TextView textView = (TextView) findViewById(R.id.textView1);
- textView.setText(Xcoord);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment