Android基础

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android基础相关的知识,希望对你有一定的参考价值。

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();

}

});

}


以上是关于Android基础的主要内容,如果未能解决你的问题,请参考以下文章

Android基础教程第4版 PDF下载

Android 面试题总结之Android 基础

Android 基础总结:Android APP基础及组件

Android基础 (11) PopupWindow详解

Android make 基础

Android 面试题总结之Android 基础