Advertisement
sounny

Untitled

Nov 30th, 2018
415
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.29 KB | None | 0 0
  1. public class MyActivity extends Activity {
  2.     @Override
  3.     protected void onCreate(Bundle savedInstanceState) {
  4.         super.onCreate(savedInstanceState);
  5.         //setContentView(R.layout.activity_main);
  6.         TextView tv = new TextView(this);
  7.         tv.setText("Hello, Android");
  8.         setContentView(tv);
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement