1,
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);#任何的项目都需要覆写父类的onCreate方法
setContentView(R.layout.activity_main);#显示出你所定义的布局,或指在当前活动中加载你所需要的布局
}
2,创造加载布局 res/layout/new/android xml file
android:layout_width="match_parent"//让当前元素变得和父类一样宽
android:layout_height="match_parent"
android:orientation="vertical" >布局是垂直的,添加文件只能垂直添加
android:id="@+id/button1"//添加一个按钮
android:layout_width="match_parent"
android:layout_height="wrap_content"//只能包裹住文字
android:text="Button" />
3,
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);//隐藏标题栏
setContentView(R.layout.first_layout);
}
4,
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);//隐藏标题栏
setContentView(R.layout.first_layout);
Button button1 = (Button) findViewById(R.id.button1);
button1.setOnClickListener(new OnClickListener() {//创造一个按钮的监听器,点击会有响应,如果出现错误,点击//ctrl+shift+o即可
@Override
public void onClick(View v) {
// TODO 自动生成的方法存根
Toast.makeText(getApplicationContext(), "you clicked button1", Toast.LENGTH_SHORT).show();
}
});
}