Advertisement
Guest User

Untitled

a guest
Jul 21st, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. import android.app.Activity;
  2. import android.graphics.Color;
  3. import android.os.Bundle;
  4. import android.widget.TextView;
  5.  
  6.  
  7. public class ADeadlySpoon extends Activity {
  8. /** Called when the activity is first created. */
  9. @Override
  10. public void onCreate(Bundle savedInstanceState) {
  11. super.onCreate(savedInstanceState);
  12. TextView t = new TextView(this);
  13. t.setText("Hello");
  14. t.setBackgroundColor(Color.BLUE);
  15. t.setTextColor(Color.MAGENTA);
  16. t.setSingleLine(true);
  17. setContentView(t);
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement