Skip to content

Instantly share code, notes, and snippets.

@Nkzn
Created November 2, 2012 21:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Nkzn/4004405 to your computer and use it in GitHub Desktop.
Save Nkzn/4004405 to your computer and use it in GitHub Desktop.
class HelloWorldActivity extends Activity {
@Override
void onCreate(Bundle savedInstanceState) {
super(savedInstanceState);
setContentView(R.layout.activity_helloworld);
TextView tvHelloWorld = (TextView)findViewById(R.id.tv_helloworld);
// 文字書き換えたりする
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment