欢迎来到代码驿站!

Android代码

当前位置:首页 > 移动开发 > Android代码

Android studio 广播的简单使用代码详解

时间:2022-11-01 09:20:04|栏目:Android代码|点击:

1.在布局文件里面加入按钮,等会发送广播

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center"
    tools:context=".MainActivity3">
    
    <Button
        android:id="@+id/send"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="发送广播"></Button>
        
</LinearLayout>

2.使用广播的第一步当然是创建一个广播接受者

public class MyBrodestReciver extends BroadcastReceiver{
        @Override
        public void onReceive(Context context, Intent intent) {
            //判断action是否为添加的action,如果是则toast
            String action = intent.getAction();
            if (action.equals("one_brodest")){
                Toast.makeText(context, "发送了一个广播", Toast.LENGTH_SHORT).show();
            }
        }
    }

3.创建完广播接受者以后注册广播,并且添加一个action

//新建intentFilter对象 通过addAction添加广播
     IntentFilter intentFilter = new IntentFilter();
     intentFilter.addAction("one_brodest");

4.然后注册一个广播

//注册广播
     MyBrodestReciver myBrodestReciver = new MyBrodestReciver();
     registerReceiver(myBrodestReciver,intentFilter);

5.到这里广播的注册已经完成接下来就是使用了

//做一个点击事件发送一个广播
     send.setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View v) {
             Intent intent = new Intent();
             intent.setAction("one_brodest");
             sendBroadcast(intent);
         }
     });

6.这就是点击之后的效果,成功发送了一个广播!!!!!!!!!!!!!!!

点击之后的效果

7.最后一步,销毁广播

@Override
    protected void onDestroy() {
        super.onDestroy();
        //销毁广播
        unregisterReceiver(brodestReciver);
    }

上一篇:Android编程之截屏实现方法(包括scrollview与listview)

栏    目:Android代码

下一篇:Android自定义Button并设置不同背景图片的方法

本文标题:Android studio 广播的简单使用代码详解

本文地址:http://www.codeinn.net/misctech/217905.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有