package com.example.addtext;
import android.app.*;
import android.os.*;
import android.widget.*;
import android.view.Menu;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
LinearLayout ll = new LinearLayout(this);
setContentView(ll);
TextView tv = new TextView(this);
tv.setText("歡迎使用Android!");
ll.addView(tv);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
文章標籤
全站熱搜
留言列表