hello world

来源:互联网 发布:南京市网络问政平台 编辑:程序博客网 时间:2024/06/06 12:52

this is my first application of android.

here is the source of the hello world ?

ok .that is begin :

   @Override    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.activity_activity01);                TextView mytest=(TextView) findViewById(R.id.buttion_01);        mytest.setText("nihao");           }


evey time why you want get a TextView or other View object,you need setContentView first

0 0
原创粉丝点击