android四大组件&helloworld例子
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android四大组件&helloworld例子相关的知识,希望对你有一定的参考价值。
四大组件Activities——UI,app能看到的UI界面都是activities
Services——负责处理后台数据,用户看不到的,例如播放音乐等,上传数据,拉取视频资源
Broadcast Receivers——处理app和其他程序之前通信,例如app使用过程中有电话打来
Content Providers——可使用android提供api存储数据。请求由ContentResolver类的方法来处理。这些数据可以是存储在文件系统、数据库或者其他其他地方。
helloworld
https://www.runoob.com/android/android-hello-world-example.html
- 注:packagename命名
Log
文件中引入,使用
import android.util.Log;
...
class
private static final String TAG = "MainActivity";
Log.d(TAG, "create finish");
以上是关于android四大组件&helloworld例子的主要内容,如果未能解决你的问题,请参考以下文章
Android面试四大组件之内容提供者ContentProvider
Carson带你Android面试:Android语言篇 (附答案)