当前位置:   article > 正文

Android:<12>activity的知识点和打开一些android自带app_android 12 activityview

android 12 activityview

这一期我们来了解一些activity运行周期的问题、启动模式问题和intent的一些运用;

一个实例含有三种状态和七个事件,三个状态分别是运行、暂停和停止:

运行就是显示和可以操作的时候,有显示有焦点,暂停就是有显示没有焦点,就是黑了的时候,而停止是既没有显示也没有焦点,比如一个app跳转到另一个app;

七个事件有:

  1. onCreate();
  2. onStart();
  3. onResume();
  4. onPause();
  5. onStop();
  6. onDestroy();
  7. onRestart();

分别是创建、开始、获取焦点、暂停、停止、销毁、重建;

一个app的启动需要进过前三个方法,而关闭就经过第四个和第五个方法;

1、了解了一些运行周期的方法和状态,我们开看看启动一个实例的模式:

一共含有四种:

注意我们的栈结构,先进后出,我们第一个打开的实例在栈底,显示的实例在栈顶

  1. android:launchMode="standard"
  2. android:launchMode="singleTop"
  3. android:launchMode="singleTask"
  4. android:launchMode="singleInstance"
  5. android:launchMode="singleInstancePerTask"

第一种是默认的而且还是最普通的一种,就是我们打开一种实例就会在栈中创建一个,意思就是打开100个就会创建100个实例;

第二种就高级一点,我们实例位于栈顶的时候不会被创建,不过可以通过栈顶的app创建下面的实例;

第三种是单例模式,更加的高级,因为它一种实例就只能存在一个实例,如果打开已存在的实例,程序会将那个实例放到栈顶显示,而且清除掉在目标实例上面的实例;

第四种是就更高级了,它直接新建一个栈,可以说弥补了单任务模式的缺点(清除上面实例的缺点),同样也只会允许一种实例只有一个,如果存在就直接到新建的栈里面调用;

第五种是android12更新出来的,比较新,据官方文档说明,就是在第四种的基础上添加了两个属性:

intent.addFlags(Intent.FLAG_ACTIVITY_MULTIPLE_TASK | Intent.FLAG_ACTIVITY_NEW_DOCUMENT);

那么就可以在第四种的基础上开启多个实例,这个实例通过intent指定,可以控制开启多个,毕竟新开了栈,这不就是第一种和第三种的集合体;

如果你们想要更改启动模式的话就找清单文件就可以了:

 添加下面这个属性,我这里已经写了,其他的你们可以都试一试:

android:launchMode="singleInstancePerTask"

2、回想一下前面的知识,如果我们需要打开一个实例需要怎么做?

是不是使用Intent这个意图对象:

  1. //1.2 使用方法一
  2. Intent intent = new Intent(this,MainActivity.class);
  3. startActivity(intent);
  4. //方法2
  5. Intent intent1 = new Intent();
  6. ComponentName componentName = new ComponentName(this,MainActivity.class);
  7. intent1.setComponent(componentName);
  8. startActivity(intent1);
  9. //方法3
  10. Intent intent2 = new Intent();
  11. intent2.setClass(this,MainActivity.class);
  12. startActivity(intent2);

这里我们可以使用三种方式来打开实例,也就是我们的activity;

一种直接在Intent带参数,第一个是上下文,第二个是目标activity,一种是不带参数通过创建组件对象,来将实例绑定到intent上,最后一种更是依赖于反射机制,直接设置类在intent上就可以开启了,当然我还是认为第一种好用有简单,不过大家看到其他的写法不要陌生,其实都是一个作用;

3、最后, 我们来学习隐式打开app,说道隐式和显示,其实都是指的是打开一个实例的方式,就像当我们指定一个人通过点名道姓和描述特征的区别,我们依据activity的某一个活动、数据等来模糊查询到对应的页面,那么就有可能会拿到多个实例,大家可以试一试,这里我就不介绍了,直接使用一个程序来演示一下如何打开安卓自带app:

布局代码:为了简单,我们直接使用线性布局

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tools="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:orientation="vertical"
  8. android:gravity="center"
  9. tools:context=".MainActivity">
  10. <TextView
  11. android:layout_width="wrap_content"
  12. android:layout_height="wrap_content"
  13. android:text="隐式启动安卓内置app"
  14. />
  15. <Button
  16. android:layout_width="wrap_content"
  17. android:layout_height="wrap_content"
  18. android:layout_marginTop="30dp"
  19. android:text="打开摄像头"
  20. android:onClick="btn_cramen"/>
  21. <Button
  22. android:layout_width="wrap_content"
  23. android:layout_height="wrap_content"
  24. android:layout_marginTop="30dp"
  25. android:text="打开浏览器"
  26. android:onClick="btn_browse"/>
  27. <Button
  28. android:layout_width="wrap_content"
  29. android:layout_height="wrap_content"
  30. android:layout_marginTop="30dp"
  31. android:text="打开联系人"
  32. android:onClick="btn_contractperson"/>
  33. <EditText
  34. android:layout_width="match_parent"
  35. android:layout_height="wrap_content"
  36. android:id="@+id/et_recipient"
  37. android:hint="请输入收件人:"/>
  38. <EditText
  39. android:layout_width="match_parent"
  40. android:layout_height="wrap_content"
  41. android:id="@+id/et_message"
  42. android:hint="请输入信息:"/>
  43. <Button
  44. android:layout_width="wrap_content"
  45. android:layout_height="wrap_content"
  46. android:layout_marginTop="30dp"
  47. android:text="发送短信"
  48. android:onClick="btn_information"/>
  49. <Button
  50. android:layout_width="wrap_content"
  51. android:layout_height="wrap_content"
  52. android:layout_marginTop="30dp"
  53. android:text="打开地图"
  54. android:onClick="btn_map"/>
  55. </LinearLayout>

布局非常简单,就是几个按钮加上两个编辑框,没啥技术含量,我们主要来学习一下打开实例的方式:

  1. /1.2 开启相机
  2. //一般我们都需要设置动作和环境
  3. Intent intent = new Intent();
  4. //都是固定写法
  5. intent.setAction("android.media.action.IMAGE_CAPTURE");
  6. intent.addCategory("android.intent.category.DEFAULT");
  7. startActivity(intent);
  8. //1.3 打开浏览器百度网页
  9. Intent intent = new Intent(Intent.ACTION_VIEW);
  10. intent.setData(Uri.parse("https://baidu.com"));
  11. startActivity(intent);
  12. //1.4 打开联系人
  13. Intent intent = new Intent();
  14. intent.setAction(Intent.ACTION_PICK);
  15. intent.setData(ContactsContract.Contacts.CONTENT_URI);
  16. startActivity(intent);
  17. //1.5 发送信息
  18. Intent intent = new Intent();
  19. intent.setAction(Intent.ACTION_SENDTO);
  20. intent.addCategory("android.intent.category.DEFAULT");
  21. //2.2 定义两个变量用于接收数据
  22. String recipient = et_recipient.getText().toString();
  23. String message = et_message.getText().toString();
  24. intent.setData(Uri.parse("sms:"+recipient));
  25. intent.putExtra("sms_body",message);
  26. startActivity(intent);
  27. //1.6 打开地图
  28. Uri uri = Uri.parse("geo:38.9999,-77.9348");
  29. Intent intent = new Intent(Intent.ACTION_VIEW,uri);
  30. startActivity(intent);

主要是很多都是固定的写法,还记得我们之前在组件里设置的监听函数吗,我们将上面的代码填入就可实现打开对应的app了:

  1. package com.example.startactivity;
  2. import androidx.appcompat.app.AppCompatActivity;
  3. import android.content.ComponentName;
  4. import android.content.Intent;
  5. import android.net.Uri;
  6. import android.os.Bundle;
  7. import android.provider.ContactsContract;
  8. import android.view.View;
  9. import android.widget.EditText;
  10. public class MainActivity extends AppCompatActivity {
  11. //1.1 创建好各个按钮监听和布局之后,我们开始编写intent来实现服务跳转
  12. //因为我们在需要发送信息的时候需要获得组建的内容,所以我们先定义好两个组件
  13. EditText et_recipient,et_message;
  14. @Override
  15. protected void onCreate(Bundle savedInstanceState) {
  16. super.onCreate(savedInstanceState);
  17. setContentView(R.layout.activity_main);
  18. //2.1 初始化变量
  19. et_recipient = findViewById(R.id.et_recipient);
  20. et_message = findViewById(R.id.et_message);
  21. }
  22. public void btn_cramen(View view) {
  23. /* //1.2 使用方法一
  24. Intent intent = new Intent(this,MainActivity.class);
  25. startActivity(intent);
  26. //方法2
  27. Intent intent1 = new Intent();
  28. ComponentName componentName = new ComponentName(this,MainActivity.class);
  29. intent1.setComponent(componentName);
  30. startActivity(intent1);
  31. //方法3
  32. Intent intent2 = new Intent();
  33. intent2.setClass(this,MainActivity.class);
  34. startActivity(intent2);*/
  35. //1.2 开启相机
  36. //一般我们都需要设置动作和环境
  37. Intent intent = new Intent();
  38. //都是固定写法
  39. intent.setAction("android.media.action.IMAGE_CAPTURE");
  40. intent.addCategory("android.intent.category.DEFAULT");
  41. startActivity(intent);
  42. }
  43. public void btn_browse(View view) {
  44. //1.3 打开浏览器百度网页
  45. Intent intent = new Intent(Intent.ACTION_VIEW);
  46. intent.setData(Uri.parse("https://baidu.com"));
  47. startActivity(intent);
  48. }
  49. public void btn_contractperson(View view) {
  50. //1.4 打开联系人
  51. Intent intent = new Intent();
  52. intent.setAction(Intent.ACTION_PICK);
  53. intent.setData(ContactsContract.Contacts.CONTENT_URI);
  54. startActivity(intent);
  55. }
  56. public void btn_information(View view) {
  57. //1.5 发送信息
  58. Intent intent = new Intent();
  59. intent.setAction(Intent.ACTION_SENDTO);
  60. intent.addCategory("android.intent.category.DEFAULT");
  61. //2.2 定义两个变量用于接收数据
  62. String recipient = et_recipient.getText().toString();
  63. String message = et_message.getText().toString();
  64. intent.setData(Uri.parse("sms:"+recipient));
  65. intent.putExtra("sms_body",message);
  66. startActivity(intent);
  67. }
  68. public void btn_map(View view) {
  69. //1.6 打开地图
  70. Uri uri = Uri.parse("geo:38.9999,-77.9348");
  71. Intent intent = new Intent(Intent.ACTION_VIEW,uri);
  72. startActivity(intent);
  73. }
  74. }

至于发信息的时候创建两个变量获取到用户输入的数据进行发送相信大家都会,那么我们开始演示一下:

要特别注意,这一期大多数里理论知识,操作性不强,所以大家记住可以这么干和一些方法原理就可以了,这里的intent隐式操作都是固定的写法,只需要复制粘贴就可了,大概实现的效果就是这样,记住一定不要写错了;

好了,那么这一期就到这,快去试试吧。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/178056
推荐阅读
相关标签
  

闽ICP备14008679号