Guest User

Untitled

a guest
Mar 26th, 2015
244
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.32 KB | None | 0 0
  1. public class MainActivity extends ActionBarActivity implements DrawingViewInterface {
  2.  
  3.     @Override
  4.     public void onActionFinished(float movedX, float movedY) {
  5.         String Xcoord = String.valueOf(movedX);
  6.         TextView textView = (TextView) findViewById(R.id.textView1);
  7.         textView.setText(Xcoord);
  8.     }
  9. }
Advertisement
Add Comment
Please, Sign In to add comment