当前位置: 首页 > article >正文

Android:IntentActivity,Service,BroadcastReceiver

3.14 Android三大组件

1、Intent页面跳转

    Intent(意图):将要做某一件事。Android的3大组件:Activity、Service、BroadcastReceiver,通过Intent启动,并且Intent可以携带数据。

    Intent类方法setComponent()设置组件;

setClass(packageContext,cls)设置类、

setAction()设置action参数,指定隐式跳转界面;

addCategory()设置category参数;

setData()设置data参数,设置系统的数据,http,smsto,tel数据类型;

putExtra()方法,传递数据;

实现点击按钮打开新的页面

示例:

创建MainActivity继承Acitivity,主界面Activity,创建Intent类对象,调用startActivity方法,将Intent类对象传入,打开新的Activity页面。

public class MainActivity extends Activity {

    private Context mContext;

    @Override

    protected void onCreate(@Nullable Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        mContext=MainActivity.this;

        setContentView(R.layout.l_main);

        //获取按钮

        Button button=findViewById(R.id.btn_1);

        button.setOnClickListener(new View.OnClickListener() {

            @Override

            public void onClick(View v) {

                //创建Intent,跳转新的Activity

                Intent intent=new Intent(mContext,MainActivity.class);

                startActivity(intent);

            }

        });

    }

}

创建layout文件:l_main.xml,主界面UI布局。

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    android:orientation="vertical" android:layout_width="match_parent"

    android:layout_height="match_parent">

    <Button

        android:id="@+id/btn_1"

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:text="打开新页面">

    </Button>

</LinearLayout>

在AndroidManifest.xml中,注册Activity,其中<intent-filter>表明MainActivity作为App入口的Activity。

<activity android:name=".MainActivity">

    <intent-filter>

        <action android:name="android.intent.action.MAIN"></action>

        <category android:name="android.intent.category.LAUNCHER"></category>

    </intent-filter>

</activity>

创建NewActivity继承Activity

public class NewActivity extends Activity {

    @Override

    protected void onCreate(@Nullable Bundle savedInstanceState) {

        super.onCreate(savedInstanceState);

        setContentView(R.layout.l_new);

    }

}

创建layout文件l_new.xml,NewActivity对应的页面布局文件

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

    android:orientation="vertical" android:layout_width="match_parent"

    android:layout_height="match_parent">

    <TextView

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:text="新页面">

    </TextView>

</LinearLayout>

2、Intent页面数据传递

页面之间数据可以相互传递。传递数据类型可以是基本数据类型,也可以传递类对象,需要对应类需要实现Serializable接口。

示例:

MainActivity传递数据到NewActivity。通过创建Intent类对象,使用putExtra方法存放要传递数据。

//使用Intent传递数据,可以传递基本类型int,byte,char,string,short,long,double,float

intent.putExtra("name","Main页面数据");

//传递一个对象

Person person=new Person(11,"tang");

intent.putExtra("person",person);
 

NewActivity获取MainActivity传递数据。通过Intent类对象,使用getXXXExtra获取传递的数据。

示例:

//获取上页面传递数据

Intent intent=getIntent();

String name = intent.getStringExtra("name");

//intent.getIntExtra()

//获取传过来对象

Person p= (Person) intent.getSerializableExtra("person");

NewActivity页面返回数据给MainActivity。

NewActivity中,创建Intent类对象,保存要返回的数据。通过setResult方法,将Intent类对象传入,设置resultCode(相当于返回数据的唯一id);

示例:

//返回MainActivity,返回数据

Button button=findViewById(R.id.back);

button.setOnClickListener(new View.OnClickListener() {

    @Override

    public void onClick(View v) {

        //创建Intent,保存返回数据

        Intent intent=new Intent();

        intent.putExtra("name","haha");

        //返回数据,resultCode,分辨哪个setResult返回值

        setResult(0,intent);

        //结束页面,返回

        finish();

    }

});

MainActivity获取NewActivity返回数据。

首先如果需要Activity返回数据时,使用startActivityForResult打开NewActivity;

其次通过重写MainActivity的onActivityResult方法接收NewActivity传回的数据。

示例:

//需要获取打开Activity返回值,requestCode:多个Acitity返回值,分辨返回值的是哪个Activity

startActivityForResult(intent,1);
 

示例:

//requestCode:多个Activity返回值时,判断哪个Activity的返回值;

//resultCode:当其他页面有多个setResult,返回多种数据,判断是哪个result返回;

//data:其他页面返回数据;

@Override

protected void onActivityResult(int requestCode, int resultCode, Intent data) {

    //获取返回数据

    if (data!=null){

        String name = data.getStringExtra("name");

    }

}

http://www.kler.cn/a/231438.html

相关文章:

  • MATLAB中extractAfter函数用法
  • 18、智能驾驶芯片外部接口要求
  • 每日一题——序列化二叉树
  • buu-pwn1_sctf_2016-好久不见29
  • 国产碳化硅(SiC)MOSFET模块在电镀电源中全面取代进口IGBT模块
  • 知识管理系统塑造企业文化与学习型组织的变革之路
  • FANUC机器人外部远程启动的相关参数设置示例
  • docker proxy 【docker 代理】
  • ChatGPT实战100例 - (14) 打造AI编程助手 Code Copilot
  • 相机图像质量研究(8)常见问题总结:光学结构对成像的影响--工厂调焦
  • BUGKU-WEB 留言板
  • 大数据环境搭建(一)-Hive
  • FFMPEG推流到B站直播
  • VRRP配置
  • 零基础学编程系列,从入门到精通,中文编程开发语言工具下载,编程构件容器件之控制面板构件用法
  • 多线程JUC:多线程的实现和常用成员方法(守护、礼让、插入线程)
  • 2024阿里云GPU服务器租用价格表(包月/按小时/学生价)
  • SpringBoot - 不加 @EnableCaching 标签也一样可以在 Redis 中存储缓存?
  • C++之std::tuple(一) : 使用精讲(全)
  • 【Qt】Android上运行keeps stopping, Desktop上正常
  • npm后Truffle找不到命令(ubantu20系统)
  • MATLAB | 绘图复刻(十四) | 右侧对齐桑基图,及工具函数SSankey更新
  • 二.AV Foundation 视频播放 - 创建播放器
  • C++设计模式之工厂模式
  • 【MySQL】MySQL复合查询--多表查询/自连接/子查询
  • 高斯伪谱C++封装库开源!