广播的最佳实践---实现强制下线功能

2024-01-27 21:20

本文主要是介绍广播的最佳实践---实现强制下线功能,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

思路:只需要在界面上弹出一个对话框,让用户无法进行任何其他操作,必须点击对话框的确定按钮,然后登录到登录界面即可.

ActivityCollector.java
管理所有活动

package com.wangdeqiang.www.chatwithrobot.BroadcastBestPractice;import android.app.Activity;import java.util.ArrayList;
import java.util.List;/*** @author 王德强* 功能 : 管理所有的活动* 强制下线功能需要关闭所有的活动,然后回到登录界面*/public class ActivityCollector {public static List<Activity> activities = new ArrayList<>();public static void addActivity(Activity activity){activities.add(activity);}public static void removeActivity(Activity activity){activities.remove(activity);}//关闭所有活动public static void finishAll(){for (Activity activity: activities) {if(!activity.isFinishing()){activity.finish();}}}
}

BaseActivity.java
作为所有活动的父类

package com.wangdeqiang.www.chatwithrobot.BroadcastBestPractice;import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.IntentFilter;
import android.os.Bundle;
import android.support.v7.app.AlertDialog;
import android.support.v7.app.AppCompatActivity;/*** Created by Deligence on 2017/5/24.* @author 王德强* 功能:作为所有活动的父类*/public class BaseActivity extends AppCompatActivity {//动态注册一个广播接收器private ForceOffLineReceiver receiver;@Overrideprotected void onCreate( Bundle savedInstanceState) {super.onCreate(savedInstanceState);ActivityCollector.addActivity(this);}//注册ForceOfflineReceiver广播接收器@Overrideprotected void onResume() {super.onResume();IntentFilter intentFilter = new IntentFilter();intentFilter.addAction("com.wangdeqiang.www.chatwithrobot.BroadcastBestPractice.FORCE_OFFLINE");receiver = new ForceOffLineReceiver();registerReceiver(receiver,intentFilter);}@Overrideprotected void onPause() {super.onPause();if (receiver!=null){unregisterReceiver(receiver);receiver = null;}}@Overrideprotected void onDestroy() {super.onDestroy();ActivityCollector.removeActivity(this);}private class ForceOffLineReceiver extends BroadcastReceiver {@Overridepublic void onReceive(final Context context, final Intent intent) {AlertDialog.Builder builder = new AlertDialog.Builder(context);builder.setTitle("Warning");builder.setMessage("You are forced to be offline,Please try to login again");builder.setCancelable(false);builder.setPositiveButton("OK", new DialogInterface.OnClickListener() {@Overridepublic void onClick(DialogInterface dialog, int which) {ActivityCollector.finishAll();//销毁所有活动Intent intent1 = new Intent(context,LoginActivity.class);context.startActivity(intent1);//重启LoginActivity活动}});builder.show();}}
}

LoginActivity.java
登录模块

package com.wangdeqiang.www.chatwithrobot.BroadcastBestPractice;import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;import com.wangdeqiang.www.chatwithrobot.R;public class LoginActivity extends BaseActivity {private EditText accountEdit;private EditText passwordEdit;private Button login;@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_login);accountEdit = (EditText) findViewById(R.id.account);passwordEdit = (EditText) findViewById(R.id.password);login = (Button) findViewById(R.id.login);login.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {String account = accountEdit.getText().toString();String password = passwordEdit.getText().toString();//如果账户是admin密码是123456 则认为登陆成功if(account.equals("admin") && password.equals("123456")){Intent intent = new Intent(LoginActivity.this,Main3Activity.class);startActivity(intent);finish();}else {Toast.makeText(LoginActivity.this,"a account or a password is invalid",Toast.LENGTH_SHORT).show();}}});}
}

activity_login.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"android:layout_width="match_parent"android:layout_height="match_parent"android:orientation="vertical"><LinearLayout
        android:layout_width="match_parent"android:layout_height="60dp"android:orientation="horizontal"><TextView
            android:layout_width="90dp"android:layout_height="wrap_content"android:layout_gravity="center_vertical"android:text="Account:"android:textSize="18sp" /><EditText
            android:id="@+id/account"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_gravity="center_vertical"android:layout_weight="1" /></LinearLayout><LinearLayout
        android:layout_width="match_parent"android:layout_height="60dp"android:orientation="horizontal"><TextView
            android:layout_width="90dp"android:layout_height="wrap_content"android:layout_gravity="center_vertical"android:text="Password"android:textSize="18sp" /><EditText
            android:id="@+id/password"android:layout_width="0dp"android:layout_height="wrap_content"android:layout_gravity="center_vertical"android:layout_weight="1"android:inputType="textPassword" /></LinearLayout><Button
        android:id="@+id/login"android:layout_width="match_parent"android:layout_height="60dp"android:text="Login" /></LinearLayout>

运行界面如下图所示
这里写图片描述

Main3Activity.java

package com.wangdeqiang.www.chatwithrobot.BroadcastBestPractice;import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;import com.wangdeqiang.www.chatwithrobot.R;public class Main3Activity extends BaseActivity {@Overrideprotected void onCreate(Bundle savedInstanceState) {super.onCreate(savedInstanceState);setContentView(R.layout.activity_main3);Button forceOffLine = (Button) findViewById(R.id.force_offonline);forceOffLine.setOnClickListener(new View.OnClickListener() {@Overridepublic void onClick(View v) {Intent intent = new Intent("com.wangdeqiang.www.chatwithrobot.BroadcastBestPractice.FORCE_OFFLINE");sendBroadcast(intent);}});}
}

activity_main3.xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 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"tools:context="com.wangdeqiang.www.chatwithrobot.BroadcastBestPractice.Main3Activity">
<Button
    android:id="@+id/force_offonline"android:layout_width="match_parent"android:layout_height="wrap_content"android:text="Send force offline broadcast"/>
</android.support.constraint.ConstraintLayout>

运行图如图所示
这里写图片描述

这篇关于广播的最佳实践---实现强制下线功能的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/651524

相关文章

MySQL双主搭建+keepalived高可用的实现

《MySQL双主搭建+keepalived高可用的实现》本文主要介绍了MySQL双主搭建+keepalived高可用的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,... 目录一、测试环境准备二、主从搭建1.创建复制用户2.创建复制关系3.开启复制,确认复制是否成功4.同

Java实现文件图片的预览和下载功能

《Java实现文件图片的预览和下载功能》这篇文章主要为大家详细介绍了如何使用Java实现文件图片的预览和下载功能,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... Java实现文件(图片)的预览和下载 @ApiOperation("访问文件") @GetMapping("

Spring Boot 配置文件之类型、加载顺序与最佳实践记录

《SpringBoot配置文件之类型、加载顺序与最佳实践记录》SpringBoot的配置文件是灵活且强大的工具,通过合理的配置管理,可以让应用开发和部署更加高效,无论是简单的属性配置,还是复杂... 目录Spring Boot 配置文件详解一、Spring Boot 配置文件类型1.1 applicatio

使用Sentinel自定义返回和实现区分来源方式

《使用Sentinel自定义返回和实现区分来源方式》:本文主要介绍使用Sentinel自定义返回和实现区分来源方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录Sentinel自定义返回和实现区分来源1. 自定义错误返回2. 实现区分来源总结Sentinel自定

Java实现时间与字符串互相转换详解

《Java实现时间与字符串互相转换详解》这篇文章主要为大家详细介绍了Java中实现时间与字符串互相转换的相关方法,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录一、日期格式化为字符串(一)使用预定义格式(二)自定义格式二、字符串解析为日期(一)解析ISO格式字符串(二)解析自定义

opencv图像处理之指纹验证的实现

《opencv图像处理之指纹验证的实现》本文主要介绍了opencv图像处理之指纹验证的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学... 目录一、简介二、具体案例实现1. 图像显示函数2. 指纹验证函数3. 主函数4、运行结果三、总结一、

SpringKafka消息发布之KafkaTemplate与事务支持功能

《SpringKafka消息发布之KafkaTemplate与事务支持功能》通过本文介绍的基本用法、序列化选项、事务支持、错误处理和性能优化技术,开发者可以构建高效可靠的Kafka消息发布系统,事务支... 目录引言一、KafkaTemplate基础二、消息序列化三、事务支持机制四、错误处理与重试五、性能优

SpringIntegration消息路由之Router的条件路由与过滤功能

《SpringIntegration消息路由之Router的条件路由与过滤功能》本文详细介绍了Router的基础概念、条件路由实现、基于消息头的路由、动态路由与路由表、消息过滤与选择性路由以及错误处理... 目录引言一、Router基础概念二、条件路由实现三、基于消息头的路由四、动态路由与路由表五、消息过滤

Springboot处理跨域的实现方式(附Demo)

《Springboot处理跨域的实现方式(附Demo)》:本文主要介绍Springboot处理跨域的实现方式(附Demo),具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不... 目录Springboot处理跨域的方式1. 基本知识2. @CrossOrigin3. 全局跨域设置4.

Spring Boot 3.4.3 基于 Spring WebFlux 实现 SSE 功能(代码示例)

《SpringBoot3.4.3基于SpringWebFlux实现SSE功能(代码示例)》SpringBoot3.4.3结合SpringWebFlux实现SSE功能,为实时数据推送提供... 目录1. SSE 简介1.1 什么是 SSE?1.2 SSE 的优点1.3 适用场景2. Spring WebFlu