Android开发基础(二)

Android开发基础(二)
上篇主要描述了Android系统架构,代码是通过Java表示的;
本篇将从介绍Android组件去理解Android开发,代码将对Java和Kotlin进行对比。
Android开发

Android组件

Android应用程序由一些零散的有联系的组件组成,通过一个工程manifest绑定在一起;
他们基本可以拆分为Activities(活动)、Services(服务)、Content Providers(内容提供者)、Intent(意图)、Broadcast Receiver(广播接收器)、Notification(通知),分别对应不同的作用。

一、Activities

Activity代表一个单独的屏幕,用户可以与之交互;
每个Activity都有预定义的生命周期方法,如onCreate()、onStart()、 onResume()、 onPause()、 onStop() 和 onDestroy(),这些生命周期方法在Activity的不同状态被调用;

public class MainActivity extends AppCompatActivity {  @Override  protected void onCreate(Bundle savedInstanceState, PersistableBundle persistentState) {  super.onCreate(savedInstanceState, persistentState);  setContentView(R.layout.activity_main);  // 在onCreate方法中初始化Activity  // 例如,可以设置布局、初始化变量等  }  @Override  protected void onStart() {  super.onStart();  // 在onStart方法中准备Activity的显示  // 例如,可以启动后台线程、加载数据等  }  @Override  protected void onResume() {  super.onResume();  // 在onResume方法中执行与用户交互的操作  // 例如,可以更新UI、处理用户输入等  }  @Override  protected void onPause() {  super.onPause();  // 在onPause方法中释放资源或保存数据  // 例如,可以停止后台线程、保存数据等  }  @Override  protected void onStop() {  super.onStop();  // 在onStop方法中执行清理工作  // 例如,可以释放资源、停止服务等  }  @Override  protected void onDestroy() {  super.onDestroy();  // 在onDestroy方法中释放Activity所占用的资源  // 例如,可以取消所有请求、停止所有服务等  }  
}
// kotlin中仅对应的继承表示变化
class MainActivity : AppCompatActivity() 

在AndroidManifest.xml文件中,可以为Activity指定不同的启动模式,这些模式定义了Activity如何被实例化和在任务堆栈中的位置;

/**
standard:这是默认的启动模式,每次启动Activity时都会创建一个新的Activity实例;
singleTop:如果Activity已经位于任务栈的顶部,系统不会创建新的Activity实例,而是复用现有的实例;
singleTask:这种模式下,系统会确保在一个任务栈中只有一个该Activity的实例;
singleInstance:与singleTask类似,但是系统为这个Activity分配一个单独的任务栈。
*/
<activity android:name=".MyActivity"  android:launchMode="singleTask">  
</activity>

Intent用于在应用程序的不同组件之间(如Activity)传递信息,可以使用Intent来启动一个新的Activity或向其他组件传递数据;
当用户与应用程序交互时,一系列的Activity会组成一个任务栈,用户可以后退(通过按返回键)到堆栈中的上一个Activity;
虽然Fragment不是与Activity直接相关的组件,但它们经常与Activity一起使用,Fragment代表Activity中的一个部分,可以重复使用和组织UI代码;
在AndroidManifest.xml文件中,可以为Activity指定Intent Filters,以便应用程序能够响应系统或其他应用程序发出的特定Intent;

/**
Intent.FLAG_ACTIVITY_NEW_TASK:这个标志用于创建一个新的任务栈来启动Activity;
Intent.FLAG_ACTIVITY_SINGLE_TOP:这个标志与singleTop启动模式类似;
Intent.FLAG_ACTIVITY_CLEAR_TOP:这个标志与singleTask启动模式类似;
Intent.FLAG_ACTIVITY_REORDER_TO_FRONT:这个标志将使Activity重新排序到任务栈的前面,但不会改变其启动模式。
*/
Intent intent = new Intent(this, MyActivity.class);  
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TOP);  
startActivity(intent);
// 使用Intent.FLAG_ACTIVITY_NEW_TASK启动Activity  val newTaskIntent = Intent(this, OtherActivity::class.java)  newTaskIntent.flags = Intent.FLAG_ACTIVITY_NEW_TASK  startActivity(newTaskIntent)  

一个Android应用通常包含多个Activity,每个Activity负责一个特定的功能或任务;
在创建和启动Intent时,可以使用不同的Flags来控制如何启动新的Activity或处理已经存在的Activity实例;
在一个Activity结束时,可以返回一个结果给启动它的Activity,这是通过使用setResult()方法实现的。

二、Services

与Activity不同,Service不会提供用户界面,但可以在后台执行一些操作,如播放音乐、同步数据等;
在AndroidManifest.xml文件中,通过 标签定义Service;

<service android:name=".MyService" android:exported="false">  <intent-filter>  <action android:name="com.example.myapp.MyServiceAction" />  </intent-filter>  </service>  

它有一个单一的onStartCommand()方法,当Service被启动时调用,可以通过两种方式启动Service:通过Context.startService()方法或通过一个Intent;
Service也可以被其他组件绑定并与之通信,通过定义一个或多个Binder接口;

import android.app.Service  
import android.content.Intent  
import android.os.IBinder  
import android.util.Log  class MyService : Service() {  private static final String TAG = "MyService"  override fun onStartCommand(intent: Intent?, flags: Int, startId: Int): Int {  Log.d(TAG, "Service started with startId: $startId")  // 在这里执行你的业务逻辑  return START_STICKY // 返回值表示如果系统需要重新创建这个 Service,它将保持其已启动的状态  }  override fun onBind(intent: Intent): IBinder? {  // 返回一个自定义的 IBinder 对象来绑定服务  return MyBinder()  }  private class MyBinder : Binder() {  // 提供了一个公开的方法来访问服务中的公共方法或数据  fun doSomething() {  // 在这里执行你想要的操作  Log.d(TAG, "Binder method called")  }  }  
}serviceConnection = object : ServiceConnection {  override fun onServiceConnected(componentName: ComponentName?, b: IBinder?) {  // 绑定成功后,通过 IBinder 对象调用服务中的方法  val binder = b as MyService.MyBinder  myService = MyService() // 创建服务实例(如果之前没有创建)  binder.doSomething() // 调用服务中的方法  }  override fun onServiceDisconnected(componentName: ComponentName?) {  // 服务意外断开连接时调用此方法,可以在这里处理相关逻辑。  }  }  val intent = Intent(this, MyService::class.java) // 创建 Intent 对象来启动服务  bindService(intent, serviceConnection, Context.BIND_AUTO_CREATE) // 绑定服务并传入 Intent、ServiceConnection 和标志位(这里是自动创建)  
}

Service可以在后台执行耗时的任务,而不会阻塞用户界面;
Service可以发送和接收广播,这是Android的一种通知机制。

三、Content Providers

Content Providers是一种数据共享机制,允许应用程序将数据提供给其他应用程序使用;

public class MyProvider extends ContentProvider {@Overridepublic boolean onCreate() {return false;}@Nullable@Overridepublic Cursor query(@NonNull Uri uri, @Nullable String[] projection, @Nullable String selection, @Nullable String[] selectionArgs, @Nullable String sortOrder) {return null;}@Nullable@Overridepublic String getType(@NonNull Uri uri) {return null;}@Nullable@Overridepublic Uri insert(@NonNull Uri uri, @Nullable ContentValues values) {return null;}@Overridepublic int delete(@NonNull Uri uri, @Nullable String selection, @Nullable String[] selectionArgs) {return 0;}@Overridepublic int update(@NonNull Uri uri, @Nullable ContentValues values, @Nullable String selection, @Nullable String[] selectionArgs) {return 0;}// 实现必要的方法
}ContentResolver resolver = getContentResolver();  
Uri uri = Uri.parse("content://com.example.myapp.myprovider/my_path");  
Cursor cursor = resolver.query(uri, projection, selection, selectionArgs, sortOrder);

四、Intent

Intent通常起着媒体中介的作用,专门提供组件互相调用的相关信息,实现调用者与被调用者之间的解耦。

五、Broadcast Receiver

用于接收来自系统或其他应用程序发送的广播,可以用于监听各种不同的事件,如系统设置更改、网络状态变化或新消息到达等。

package com.example.myapplication;  import android.content.Intent;  
import androidx.core.app.JobIntentService;  
import androidx.core.content.ContextCompat;  public class MyService extends JobIntentService {  private static final String MY_ACTION = "com.example.myapplication.MY_ACTION";  private static final String MY_EXTRA = "com.example.myapplication.MY_EXTRA";  public static void enqueueWork(Context context, Intent work) {  enqueueWork(context, MyService.class, 1, work);  }  @Override  protected void onHandleWork(Intent intent) {  if (intent != null && MY_ACTION.equals(intent.getAction())) {  String extraData = intent.getStringExtra(MY_EXTRA);  // 处理接收到的广播数据  }  }  
}
<service android:name=".MyService" android:exported="false">  <intent-filter>  <action android:name="com.example.myapplication.MY_ACTION"/>  </intent-filter>  
</service>
package com.example.myapplication;  import androidx.appcompat.app.AppCompatActivity;  
import android.content.Intent;  
import android.os.Bundle;  
import androidx.core.app.JobIntentService;  
import androidx.core.content.ContextCompat;  
import androidx.core.content.IntentUtils;  
import static androidx.core.content.IntentUtilsKt.*;  public class MainActivity extends AppCompatActivity {  @Override  protected void onCreate(Bundle savedInstanceState) {  super.onCreate(savedInstanceState);  setContentView(R.layout.activity_main);  // 启动MyService来注册Broadcast Receiver  Intent work = new Intent(this, MyService.class);  work.setAction(MyService.MY_ACTION);  work.putExtra(MyService.MY_EXTRA, "额外的数据"); // 可选,根据需要传递数据给MyService处理。  enqueueWork(this, work); // 使用JobIntentService的enqueueWork()方法启动服务。这将在后台线程上异步执行服务。  }  
}

六、Notification

用于在状态栏上显示通知给用户,这些通知可以包含文本、图标、声音、振动和其他类型的视觉和听觉反馈,以向用户提供关于应用程序或其他事件的即时信息。

import android.app.NotificationChannel  
import android.app.NotificationManager  
import android.content.Context  
import android.os.Build  
import androidx.core.app.NotificationCompat  public class MyNotification {  private Context context;  private NotificationManager notificationManager;  public MyNotification(Context context) {  this.context = context;  notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);  }  public void createNotificationChannel(String channelId, String channelName) {  if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {  NotificationChannel channel = new NotificationChannel(channelId, channelName, NotificationManager.IMPORTANCE_DEFAULT);  notificationManager.createNotificationChannel(channel);  }  }  public void showNotification() {  String channelId = "my_channel_id";  String channelName = "My Notification Channel";  createNotificationChannel(channelId, channelName);  NotificationCompat.Builder notificationBuilder = new NotificationCompat.Builder(context, channelId)  .setContentTitle("Notification Title")  .setContentText("This is the notification content")  .setSmallIcon(R.drawable.ic_launcher);  notificationManager.notify(1, notificationBuilder.build());  }  
}
import android.app.NotificationChannel  
import android.app.NotificationManager  
import android.content.Context  
import android.os.Build  
import androidx.core.app.NotificationCompat  class MyNotification(context: Context) {  private val notificationManager = context.getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager  fun createNotificationChannel(channelId: String, channelName: String) {  if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {  val channel = NotificationChannel(channelId, channelName, NotificationManager.IMPORTANCE_DEFAULT)  notificationManager.createNotificationChannel(channel)  }  }  fun showNotification() {  val channelId = "my_channel_id"  val channelName = "My Notification Channel"  createNotificationChannel(channelId, channelName)  val notification = NotificationCompat.Builder(context, channelId)  .setContentTitle("Notification Title")  .setContentText("This is the notification content")  .setSmallIcon(R.drawable.ic_launcher)  .build()  notificationManager.notify(1, notification)  }  
}

总结:Java与Kotlin

异:
Java 和 Kotlin 的语法存在显著差异,Kotlin 的语法更加简洁,减少了样板代码的数量,使得代码更加清晰易读;
Kotlin 对于空值的安全性处理比 Java 更强大,Kotlin 中的非空类型可以自动处理空值问题,减少了空指针异常的可能性;
Kotlin 支持扩展函数,可以在不修改原有类的基础上为其添加新的方法,而 Java 则不支持这一特性;
Kotlin 支持 Lambda 表达式和匿名函数,使得编写简洁、功能强大的代码更加容易,而 Java 8 之后也开始支持 Lambda 表达式,但相对 Kotlin 的语法更加繁琐;

List<String> names = Arrays.asList("Peter", "Anna", "Mike", "Xenia");  Collections.sort(names, (String a, String b) -> {  return b.compareTo(a);  
});new Thread(new Runnable() {  @Override  public void run() {  System.out.println("Hello from another thread!");  }  
}).start();
val names = listOf("Peter", "Anna", "Mike", "Xenia")  
names.sorted { a, b -> b.compareTo(a) } // 使用lambda表达式排序fun main() {  val printMessage = { message: String -> println(message) } // 定义匿名函数  printMessage("Hello from Kotlin!") // 调用匿名函数  
}

Kotlin 在内存安全方面更加严格,减少了内存泄漏的风险,而 Java 需要开发者更加关注内存管理问题;
同:
两者都是静态类型语言,支持面向对象编程;
两者都可以编写 Android 应用,并且编译成字节码;
两者都支持 Android API,可以调用 Android 提供的各种组件和服务。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.hqwc.cn/news/343000.html

如若内容造成侵权/违法违规/事实不符,请联系编程知识网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

JS-DOM树和DOM对象

作用和分类 作用&#xff1a;就是使用JS去操作html和浏览器 分类&#xff1a;DOM&#xff08;文档对象模型&#xff09;、BOM&#xff08;浏览器对象模型&#xff09; 什么是DOM DOM&#xff08;Document Object Model--文档对象模型&#xff09;是用来呈现以及与任意HTML或…

Python商业数据挖掘实战——爬取网页并将其转为Markdown

前言 「作者主页」&#xff1a;雪碧有白泡泡 「个人网站」&#xff1a;雪碧的个人网站 ChatGPT体验地址 文章目录 前言前言正则表达式进行转换送书活动 前言 在信息爆炸的时代&#xff0c;互联网上的海量文字信息如同无尽的沙滩。然而&#xff0c;其中真正有价值的信息往往埋…

在 The Sandbox 见证元宇宙新地标:Playboy 推出 MetaMansion 特别预览

元宇宙诞生了新地标&#xff01;The Sandbox 联手 Playboy推出 MetaMansion&#xff0c;重新演绎了传说级别的现实版 Playboy Mansion&#xff0c;你可以在 The Sandbox 中一睹它的风采。 今天&#xff0c;Playboy 公布了 MetaMansion 的首次预览&#xff0c;用虚拟方式呈现了 …

Postgresql常见(花式)操作完全示例

案例说明 将Excel数据导入Postgresql&#xff0c;并实现常见统计&#xff08;数据示例如下&#xff09; 导入Excel数据到数据库 使用Navicat工具连接数据库&#xff0c;使用导入功能可直接导入&#xff0c;此处不做过多介绍&#xff0c;详细操作请看下图&#xff1a; 点击“下…

直播带货2024:洗牌、阵痛和暗流涌动

文 | 螳螂观察 作者 | 青月 一天前&#xff0c;大学生齐夏根本不会在直播间购买《额尔古纳河右岸》这种书籍。 她是喜欢看小说&#xff0c;但只钟爱悬疑无限流题材&#xff0c;至于《额尔古纳河右岸》这种讲述一个弱小民族顽强的抗争和优美的爱情的长篇小说&#xff0c;用齐…

训练营第四十二天 | 01背包问题,你该了解这些! ● 01背包问题,你该了解这些! 滚动数组 ● 416. 分割等和子集

01背包问题 二维 代码随想录 dp二维数组 优化 01背包问题 一维 代码随想录 dp一维数组 416. 分割等和子集 把数组分成总和相等的两份&#xff0c;如果数组总和为奇数&#xff0c;不能分割&#xff0c;若有符合的数组子集&#xff0c;返回true 代码随想录 class Solution {p…

Nginx服务配置文件

在Nginx服务器的主配置文件/usr/local/nginx/conf/nginx.conf 中&#xff0c;包括全局配置、I/O事件配置 和HTTP配置这三大块内容&#xff0c;配置语句的格式为“关键字 值&#xff1a;”&#xff08;末尾以分号表示结束&#xff09;&#xff0c;以“#” 开始的部分表示注释。 …

Swoft - Bean

一、Bean 在 Swoft 中&#xff0c;一个 Bean 就是一个类的一个对象实例。 它(Bean)是通过容器来存放和管理整个生命周期的。 最直观的感受就是省去了频繁new的过程&#xff0c;节省了资源的开销。 二、Bean的使用 1、创建Bean 在【gateway/app/Http/Controller】下新建一个名为…

springIoc依赖注入循环依赖三级缓存

springIoc的理解&#xff0c;原理和实现 控制反转&#xff1a; 理论思想&#xff0c;原来的对象是由使用者来进行控制&#xff0c;有了spring之后&#xff0c;可以把整个对象交给spring来帮我们进行管理 依赖注入DI&#xff1a; 依赖注入&#xff0c;把对应的属性的值注入到…

生成式AI,发展可持续吗?

最近有消息透露&#xff0c;OpenAI预计在2024年实现16亿美元的年化收入。相较于去年10月预测的13亿美元&#xff0c;这一数字增长了3亿美元&#xff0c;增长部分主要来源于ChatGPT订阅、API接入以及其他业务。 与此同时&#xff0c;其竞争对手Anthropic预计年化收入至少为8.5亿…

代码随想录算法训练营第三天 | 203.移除链表元素、707.设计链表、206.反转链表

代码随想录算法训练营第三天 | 203.移除链表元素、707.设计链表、206.反转链表 文章目录 代码随想录算法训练营第三天 | 203.移除链表元素、707.设计链表、206.反转链表1 链表理论基础1.1 链表的定义1.2 链表的类型1.3 链表的存储方式1.4 链表的操作性能分析1.5 链表和数组的区…

结队编程 - 华为OD统一考试

OD统一考试 题解: Java / Python / C++ 题目描述 某部门计划通过结队编程来进行项目开发,已知该部门有 N 名员工,每个员工有独一无二的职级,每三个员工形成一个小组进行结队编程,结队分组规则如下: 从部门中选出序号分别为 i、j、k 的3名员工,他们的职级分别为 level[…