aboutsummaryrefslogtreecommitdiff
path: root/src/coffee/source/helloworld/HelloWorld.java
blob: bf012e2bac0d5b1b8d43089763cc29d1c9fbe8cf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package coffee.source.helloworld;

import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;

public class HelloWorld extends Activity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        TextView text = (TextView)findViewById(R.id.my_text);
        text.setText("Hello, world!");
    }
}