1,
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);#任何的项目都需要覆写父类的onCreate方法
setContentView(R.layout.activity_main);#显示出你所定义的布局,或指在当前活动中加载你所需要的布局
}
2,创造加载布局 res/layout/new/android xml file
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"//让当前元素变得和父类一样宽
android:layout_height="match_parent"
android:orientation="vertical" >布局是垂直的,添加文件只能垂直添加
<Button
android:id="@+id/button1"//添加一个按钮
android:layout_width="match_parent"
android:layout_height="wrap_content"//只能包裹住文字
android:text="Button" />
</LinearLayout>
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();
}
});
}
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。