当前位置:   article > 正文

Android开发-BroadcastReceiver(广播接收者)_安卓开发receiver

安卓开发receiver

1. 概述

1.1 定义

        在Android中,广播是一种可以跨进程的通信方式,运用在应用程序之间传递消息的机制,允许应用接收来自各处的广播消息,比如电话,短信等。同样,可以向外发出广播消息,例如电池电量低时会发送一条提示广播。要过滤并接收广播中的消息就需要使用BroadcastReceiver(广播接收者,Android四大组件之一)。

         通过广播接收者可以监听系统中的广播消息,并实现在不同组件之间的通信。当Android系统产生一个广播事件时,可以有多个对应的BroadcastReceiver接收并处理,这些广播接收者只需要在清单文件或者代码中注册并指定要接收的广播事件,然后创建一个类继承自BroadcastReceiver类重写onReceive()方法,在方法中处理广播事件即可。

1.2 创建

     创建一个类继承自BroadcastReceiver类重写onReceive()方法,在方法中处理广播事件即可。广播要监听什么样的广播,需要添加相应的Action,这样才能接收到。

1.3 注意事项

       不要在onReceive()方法里面添加过多的逻辑或耗时操作,因为在广播接收器中是不允许开启线程的,一旦onReceive()方法运行时间较长而没有结束,就会报错。

      广播接受者更多的是扮演一种打开其他程序组件的角色,比如创建一条状态栏通知,启动一个服务等等。    

2. 注册方式

       广播接收者有两种注册方式,分别为动态注册和静态注册,其区别如下:

动态注册

可以自由的控制广播接收者注册和注销,有很大的灵活性,缺点是必须在程序启动后才能接收到广播

静态注册可以让程序在未启动的情况下就能接收到广播

2.1 动态注册

2.1.1 方式

         动态注册在Activity中,通过调用registerReceiver()方法进行注册。

2.1.2 案例

       如下案例所示:监听网络状态的变化

       1)在MainActivity中,动态注册广播

  1. public class MainActivity extends AppCompatActivity {
  2. private IntentFilter intentFilter;
  3. private NetworkChangeReceiver networkChangeReceiver;
  4. @Override
  5. protected void onCreate(Bundle savedInstanceState) {
  6. super.onCreate(savedInstanceState);
  7. setContentView(R.layout.activity_main);
  8. intentFilter = new IntentFilter();
  9. //设置监听广播的类型
  10. intentFilter.addAction("android.net.conn.CONNECTIVITY_CHANGE");
  11. networkChangeReceiver = new NetworkChangeReceiver();
  12. //注册广播
  13. registerReceiver(networkChangeReceiver,intentFilter);
  14. }
  15. //自定义广播接受者
  16. public class NetworkChangeReceiver extends BroadcastReceiver{
  17. @Override
  18. public void onReceive(Context context, Intent intent) {
  19. ConnectivityManager connectivityManager = (ConnectivityManager)
  20. getSystemService(Context.CONNECTIVITY_SERVICE);
  21. NetworkInfo networkInfo = connectivityManager.getActiveNetworkInfo();
  22. //判断是否有网络连接
  23. if(networkInfo != null && networkInfo.isConnected()){
  24. Toast.makeText(context,"网络开启",Toast.LENGTH_SHORT).show();
  25. }else{
  26. Toast.makeText(context,"网络关闭",Toast.LENGTH_SHORT).show();
  27. }
  28. }
  29. }
  30. @Override
  31. protected void onDestroy() {
  32. super.onDestroy();
  33. //取消注册广播
  34. unregisterReceiver(networkChangeReceiver);
  35. }
  36. }

       说明:ConnectivityManager是一个系统服务类,专门用于管理网络连接的。

       2)在AndroidManifest.xml中添加申请访问系统网络状态的权限

<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>

       3)展示效果

         当开启网络时:

         当关闭网络时:

2.2 静态注册

2.2.1 方式

        选择【new】->【Other】->【BroadcastReceiver】,如下图:

         Exported复选框用于选择是否接收当前程序之外的广播,Enabled复选框用于选择广播是否可以由系统实例化。创建好的广播如下所示:继承自BroadcastReceiver,并重写其onReceive()方法,当有广播到来时,onReceive()方法就会得到执行。

  1. public class MyReceiver extends BroadcastReceiver {
  2. @Override
  3. public void onReceive(Context context, Intent intent) {
  4. throw new UnsupportedOperationException("Not yet implemented");
  5. }
  6. }

        用于该方法还没实现,故抛出异常,在实现方法时,删除该异常即可。广播接收者创建完成之后,清单文件中会注册,如下所示:

  1. <application
  2. <receiver
  3. android:name=".MyReceiver"
  4. android:enabled="true"
  5. android:exported="true">
  6. </receiver>
  7. </application>

2.2.2 案例

      这里以监听手机开机的广播接收者为案例,手机开机后,显示手机开机提示消息。

      1)创建自定义的BroadcastReceiver

  1. public class MyReceiver extends BroadcastReceiver {
  2. @Override
  3. public void onReceive(Context context, Intent intent) {
  4. Toast.makeText(context, "监听到手机开机了!", Toast.LENGTH_SHORT).show();
  5. }
  6. }

      2)在AndroidManifest.xml中添加监听系统开机广播权限,注册广播和指定action

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.example.broadcaststudy">
  4. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
  5. <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
  6. <application
  7. android:allowBackup="true"
  8. android:icon="@mipmap/ic_launcher"
  9. android:label="@string/app_name"
  10. android:roundIcon="@mipmap/ic_launcher_round"
  11. android:supportsRtl="true"
  12. android:theme="@style/AppTheme">
  13. <receiver
  14. android:name=".MyReceiver"
  15. android:enabled="true"
  16. android:exported="true">
  17. <intent-filter>
  18. <action android:name="android.intent.action.BOOT_COMPLETED"/>
  19. </intent-filter>
  20. </receiver>
  21. <activity android:name=".MainActivity">
  22. <intent-filter>
  23. <action android:name="android.intent.action.MAIN" />
  24. <category android:name="android.intent.category.LAUNCHER" />
  25. </intent-filter>
  26. </activity>
  27. </application>
  28. </manifest>

      3)效果图

 

 

3. 自定义广播的发送与接收

         广播的发送与接收如下图所示:

         当自定义广播发送消息时,会储存到公共消息区中,而公共消息区中如果存在对应的广播接收者,就会及时的接收到这条消息。

4. 广播的类型

        Android提供了有序广播无序广播两种类型。两者区别如下所示:

有序广播按照优先级别同步执行,每次只有一个广播接收者接收到广播消息,可被拦截,效率低
无序广播按照异步执行,所有广播接受者同时接收到广播消息,不可被拦截,效率高

4.1 无序广播

4.1.1 定义

       无序广播是完全异步执行的,发送广播时,所有监听这个广播的广播接收者都会直接接受到此广播消息,但接收和执行顺序不确定。无序广播的效率比较高,但无法被拦截。其工作流程如下图:

4.1.2 方法

       发送广播消息通过如下方法:

1.sendBroadcast(Intent intent)参数1:Intent对象
2.sendBroadcast(Intent intent,String receiverPermission)

参数1:Intent对象

参数2:跟权限有关的字符串

4.1.3 案例          

      1)说明

          自定义广播接受者,点击发送广播消息后,如果自定义的广播接收到了广播消息,则显示接收到的消息。

      2)效果图

            未点击发送广播消息按钮前:

 

          点击发送广播消息按钮后:

        3)在MainActivity.java中:

  1. public class MainActivity extends AppCompatActivity {
  2. @Override
  3. protected void onCreate(Bundle savedInstanceState) {
  4. super.onCreate(savedInstanceState);
  5. setContentView(R.layout.activity_main);
  6. findViewById(R.id.button).setOnClickListener(new View.OnClickListener() {
  7. @Override
  8. public void onClick(View v) {
  9. //创建Intent,指定要发送的广播的类型action
  10. Intent intent = new Intent("com.luckyliuqs.MyBroadcastReceiver");
  11. //发送显示广播,设置广播接收者的路径:第一个参数是包名路径;第二个参数是类名路径
  12. intent.setComponent(new ComponentName("com.example.broadcaststudy",
  13. "com.example.broadcaststudy.MyBroadcastReceiver"));
  14. //创建Bundle
  15. Bundle bundle = new Bundle();
  16. //储存要发送的广播消息内容
  17. bundle.putString("message","hello broadcast receiver");
  18. intent.putExtra("bundle",bundle);
  19. //发送广播
  20. sendBroadcast(intent);
  21. }
  22. });
  23. }
  24. }

        注意:在Android8.0之后,静态广播做了一些限制。静态注册的广播接收者无法接收到隐式广播消息。

       如上面,如果没有intent.setComponent(ComponentName componentName),则广播接收者无法接收到广播消息。解决方案:

1.使用动态注册代替静态注册 

2.保留静态注册,但是发送广播的时候需要

发送显示广播

①如果有单个静态广播接收者,则可以使用

intent.setComponent(ComponentName componentName)

设置广播为显式广播。如果有多个,为其指定,则只有最后一个才会生效,

其余的不会变成显示广播。

②如果有多个静态广播接收者,则可以使用intent.setPackage(getPackageName());

一次性全部设置显示广播。

         如果接受不到广播,有以下两种情况:

1.静态注册的广播接收者接收不到隐式广播消息

设置广播为显式广播

setComponent(ComponentName componentName);

setPackage(getPackageName());

2.一些特殊的广播,必须动态注册,静态注册是不起效果的,

类似,屏幕的锁屏和开屏

IntentFilter recevierFilter=new IntentFilter();
recevierFilter.addAction(Intent.ACTION_SCREEN_ON);
recevierFilter.addAction(Intent.ACTION_SCREEN_OFF);
MyReceiver receiver=new MyReceiver();
registerReceiver(receiver, recevierFilter);

      4)自定义广播接收者

  1. public class MyBroadcastReceiver extends BroadcastReceiver {
  2. @Override
  3. public void onReceive(Context context, Intent intent) {
  4. //获取到发送的广播的内容
  5. String message = (String) intent.getBundleExtra("bundle").get("message");
  6. Toast.makeText(context, "接收到发送的广播消息:"+message, Toast.LENGTH_LONG).show();
  7. }

        5)在AndroidManifest.xml中注册,并指定要监听的广播类型action

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.example.broadcaststudy">
  4. <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
  5. <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
  6. <application
  7. android:allowBackup="true"
  8. android:icon="@mipmap/ic_launcher"
  9. android:label="@string/app_name"
  10. android:roundIcon="@mipmap/ic_launcher_round"
  11. android:supportsRtl="true"
  12. android:theme="@style/AppTheme">
  13. <receiver
  14. android:name=".MyBroadcastReceiver"
  15. android:enabled="true"
  16. android:exported="true">
  17. <intent-filter>
  18. <action android:name="com.luckyliuqs.MyBroadcastReceiver"/>
  19. </intent-filter>
  20. </receiver>
  21. <activity android:name=".MainActivity">
  22. <intent-filter>
  23. <action android:name="android.intent.action.MAIN" />
  24. <category android:name="android.intent.category.LAUNCHER" />
  25. </intent-filter>
  26. </activity>
  27. </application>
  28. </manifest>

4.2 有序广播

4.2.1 定义

         有序广播是按照接收者声明的优先级别被依次接收,发送广播时,只有一个广播接收者能够接收此消息。当在此广播接收者逻辑执行完毕后,广播才会继续传递。相比于无序广播,有序广播的效率较低,但此类型是有先后顺序的,并可被拦截(通过abortBroadcast()方法,广播就不会继续往下进行传递)。

         工作流程如下图:

      【如何设置优先级】在清单文件中设置,如下:

  1. <!-- 数值越大优先级越高 -->
  2. <intent-filter android:priority="100">
  3. .....
  4. </intent-filter>

       注意:当两个广播接收者优先级相同时,先注册的广播接收者会先接收到广播。

4.2.2 方法

        发送有序广播通过如下方法:

1.sendOrderedBroadcast(Intent intent,String receiverPermission)

第一个参数是Intent

第二个参数是与权限有关的字符串

4.2.3 案例

       1)说明:自定义两个广播接收者MyReceiver1和MyReceiver1,通过静态方式注册,设置优先级(MyReceiver1为50,MyReceiver2为100),以有序广播方式发送广播消息,然后分别展示消息内容

       2)效果图:

             点击发送广播消息按钮后如下所示:

       3)自定义广播接收者

  1. public class MyReceiver1 extends BroadcastReceiver {
  2. @Override
  3. public void onReceive(Context context, Intent intent) {
  4. Log.i("MyReceiver", "MyReceiver1 onReceive() ========================= ");
  5. //获取广播消息内容
  6. String message = intent.getBundleExtra("bundle").get("message").toString();
  7. Toast.makeText(context, "MyReceiver1收到广播消息:"+message, Toast.LENGTH_SHORT).show();
  8. }
  9. }
  1. public class MyReceiver2 extends BroadcastReceiver {
  2. @Override
  3. public void onReceive(Context context, Intent intent) {
  4. Log.i("MyReceiver", "MyReceiver2 onReceive() ========================= ");
  5. //获取广播消息内容
  6. String message = intent.getBundleExtra("bundle").get("message").toString();
  7. Toast.makeText(context, "MyReceiver2收到广播消息:"+message, Toast.LENGTH_SHORT).show();
  8. //拦截广播方法,广播就不会继续往下传递了,即MyReceiver1不会接收到广播消息
  9. //abortBroadcast();
  10. }
  11. }

        abortBroadcast()用于拦截广播。     

       4)在MainActivity.java中

  1. public class MainActivity extends AppCompatActivity {
  2. @Override
  3. protected void onCreate(Bundle savedInstanceState) {
  4. super.onCreate(savedInstanceState);
  5. setContentView(R.layout.activity_main);
  6. findViewById(R.id.button).setOnClickListener(new View.OnClickListener() {
  7. @Override
  8. public void onClick(View v) {
  9. Intent intent = new Intent("com.luckliuqs.broadcast_receiver");
  10. Bundle bundle = new Bundle();
  11. bundle.putString("message","hello all broadcast receiver");
  12. intent.putExtra("bundle",bundle);
  13. // intent.setComponent(new ComponentName("com.example.broadcastreceiverstudy2","com.example.broadcastreceiverstudy2.MyReceiver1"));
  14. // intent.setComponent(new ComponentName("com.example.broadcastreceiverstudy2","com.example.broadcastreceiverstudy2.MyReceiver2"));
  15. intent.setPackage(getPackageName());
  16. sendOrderedBroadcast(intent,null);
  17. }
  18. });
  19. }
  20. }

       5)在AndroidManifest.xml中静态注册广播接收者,设置优先级和接收广播类型action

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  3. package="com.example.broadcastreceiverstudy2">
  4. <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
  5. <application
  6. android:allowBackup="true"
  7. android:icon="@mipmap/ic_launcher"
  8. android:label="@string/app_name"
  9. android:roundIcon="@mipmap/ic_launcher_round"
  10. android:supportsRtl="true"
  11. android:theme="@style/AppTheme">
  12. <receiver
  13. android:name=".MyReceiver2"
  14. android:enabled="true"
  15. android:exported="true">
  16. <intent-filter android:priority="100">
  17. <action android:name="com.luckliuqs.broadcast_receiver"/>
  18. </intent-filter>
  19. </receiver>
  20. <receiver
  21. android:name=".MyReceiver1"
  22. android:enabled="true"
  23. android:exported="true">
  24. <intent-filter android:priority="50">
  25. <action android:name="com.luckliuqs.broadcast_receiver"/>
  26. </intent-filter>
  27. </receiver>
  28. <activity android:name=".MainActivity">
  29. <intent-filter>
  30. <action android:name="android.intent.action.MAIN" />
  31. <category android:name="android.intent.category.LAUNCHER" />
  32. </intent-filter>
  33. </activity>
  34. </application>
  35. </manifest>

     程序运行后,MyReceiver2会先接收到广播,然后MyReceiver1接收到广播事件。

4.3 指定广播接收者

           实际开发中,遇到这样的情况:当发送一条有序广播时,有多个接收者接收这条广播,但需要保证一个广播接收者必须接收到此广播,无论优先级。要满足这样的需求,可以在Activity类使用sendOrderedBroadcast()方法发送有序广播,示例代码如下:

  1. Intent intent = new Intent();
  2. //定义广播的事件类型
  3. intent.setAction("Intercept_Stitch");
  4. //发送有序广播
  5. MyBroadcastReceiverThree receiver = new MyBroadcastReceiver();
  6. sendOrderedBroadcast(intent,null,receiver,null,0,null,null).

 

5.本地广播

5.1 引入

       在前面发送和接收的广播都是属于系统全局广播,即发出的广播可以被其他任何应用程序接收到,并且发送广播者也可以接收来自于任何其他应用发送的广播,这样就很容易引起安全问题。比如发送的一些携带关键性数据的广播就可能被其他应用程序所截获;其他应用程序可以不听得向某个广播接收器里面发送各种垃圾广播。

5.2 定义

      本地广播就是用来解决上述广播安全性问题。使用本地广播机制发出的广播只能够在当前应用程序内部进行传递,并且广播接收器也只能接收来自于当前应用程序发出的广播。

5.3 原理

     本地广播主要就是使用一个LocalBroadcastManager来对广播进行管理,并且提供了发送广播和注册广播接收者的方法。

5.4 注意事项

     本地广播是无法通过静态注册的方式来获取的。因为静态注册主要就是为了让程序在未启动的情况下也能接收到广播,而发送本地广播时,应用程序已经启动了,因此就不需要使用静态注册的功能。   

5.5 优点

1.可以明确的知道正在发送的广播不会离开当前应用程序,因此不必担心泄密。
2.其他应用程序无法将广播发送到当前应用程序内部,因此不必担心安全漏洞隐患。
3.发送本地广播比发送全局广播更加高效。

5.6 案例

      1)展示效果:点击发送本地广播之后,广播接收者接收到了广播

      2)在MainActivity.java中

  1. public class Main2Activity extends AppCompatActivity {
  2. //创建Intent过滤器
  3. private IntentFilter intentFilter;
  4. //创建LocalBroadcastManager管理广播
  5. private LocalBroadcastManager localBroadcastManager;
  6. //创建广播接收者
  7. private LocalReceiver localReceiver;
  8. @Override
  9. protected void onCreate(Bundle savedInstanceState) {
  10. super.onCreate(savedInstanceState);
  11. setContentView(R.layout.activity_main2);
  12. //获取实例
  13. localBroadcastManager = LocalBroadcastManager.getInstance(this);
  14. findViewById(R.id.btn_local_broadcast).setOnClickListener(new View.OnClickListener() {
  15. @Override
  16. public void onClick(View v) {
  17. Intent intent = new Intent("com.luckyliuqs.local_broadcast");
  18. //发送本地广播
  19. localBroadcastManager.sendBroadcast(intent);
  20. }
  21. });
  22. intentFilter = new IntentFilter();
  23. intentFilter.addAction("com.luckyliuqs.local_broadcast");
  24. localReceiver = new LocalReceiver();
  25. //注册本地广播监听器
  26. localBroadcastManager.registerReceiver(localReceiver,intentFilter);
  27. }
  28. class LocalReceiver extends BroadcastReceiver{
  29. @Override
  30. public void onReceive(Context context, Intent intent) {
  31. Toast.makeText(context,"接收到本地广播!",Toast.LENGTH_SHORT).show();
  32. }
  33. }
  34. @Override
  35. protected void onDestroy() {
  36. super.onDestroy();
  37. //注销操作
  38. localBroadcastManager.unregisterReceiver(localReceiver);
  39. }
  40. }

 

6.实战:实现另一台设备登录强制下线

6.1 说明

      类似于QQ一样的,在另一台设备上登录则会强制下线。

6.2 效果图

     1)登录界面效果图

     2)登录成功效果图

     3)点击强制下线按钮,发送广播

     4)接收广播后强制下线,返回登录界面

6.3 代码

6.3.1 定义BaseActivity,作为所有Activity的父类

  1. public class BaseActivity extends AppCompatActivity {
  2. private OfflineBroadcastReceiver offlineBroadcastReceiver;
  3. @Override
  4. protected void onCreate(@Nullable Bundle savedInstanceState) {
  5. super.onCreate(savedInstanceState);
  6. ActivityCollector.addActivity(this);
  7. }
  8. @Override
  9. protected void onDestroy() {
  10. super.onDestroy();
  11. ActivityCollector.removeActivity(this);
  12. }
  13. /**
  14. * 让处于栈顶的Activity才能接收到此广播消息
  15. */
  16. @Override
  17. protected void onResume() {
  18. super.onResume();
  19. //Intent过滤器
  20. IntentFilter intentFilter = new IntentFilter();
  21. intentFilter.addAction("com.luckyliuqs.offline_broadcast");
  22. offlineBroadcastReceiver = new OfflineBroadcastReceiver();
  23. //注册广播接收者
  24. registerReceiver(offlineBroadcastReceiver,intentFilter);
  25. }
  26. @Override
  27. protected void onStop() {
  28. super.onStop();
  29. if(offlineBroadcastReceiver != null){
  30. //销毁注册
  31. unregisterReceiver(offlineBroadcastReceiver);
  32. offlineBroadcastReceiver = null;
  33. }
  34. }
  35. /**
  36. * 动态注册强制下线广播接收者
  37. */
  38. public class OfflineBroadcastReceiver extends BroadcastReceiver{
  39. @Override
  40. public void onReceive(final Context context, Intent intent) {
  41. AlertDialog.Builder builder = new AlertDialog.Builder(context);
  42. builder.setTitle("警告");
  43. builder.setMessage("另一处设备登录,你将被强制下线!");
  44. builder.setCancelable(false);
  45. builder.setPositiveButton("确定", new DialogInterface.OnClickListener() {
  46. @Override
  47. public void onClick(DialogInterface dialog, int which) {
  48. ActivityCollector.finishAllActivity();
  49. Intent backLoginIntent = new Intent(context,LoginActivity.class);
  50. context.startActivity(backLoginIntent);
  51. }
  52. });
  53. builder.show();
  54. }
  55. }
  56. }

6.3.2 定义ActivityCollector,管理所有的Activity

  1. public class ActivityCollector {
  2. public static List<Activity> activityList = new ArrayList<Activity>();
  3. public static void addActivity(Activity activity){
  4. activityList.add(activity);
  5. }
  6. public static void removeActivity(Activity activity){
  7. activityList.remove(activity);
  8. }
  9. public static void finishAllActivity(){
  10. for(Activity activity : activityList){
  11. if(!activity.isFinishing()){
  12. activity.finish();
  13. }
  14. }
  15. //清空
  16. activityList.clear();
  17. }
  18. }

 6.2.1 登录逻辑及界面

  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. <LinearLayout
  9. android:layout_width="match_parent"
  10. android:layout_height="70dp"
  11. android:orientation="horizontal"
  12. android:layout_marginTop="20dp">
  13. <TextView
  14. android:layout_width="wrap_content"
  15. android:layout_height="wrap_content"
  16. android:text="Account"
  17. android:layout_marginRight="10dp"
  18. android:layout_gravity="center_vertical"/>
  19. <EditText
  20. android:id="@+id/account"
  21. android:layout_width="0dp"
  22. android:layout_height="wrap_content"
  23. android:layout_weight="1"
  24. android:layout_gravity="center_vertical"/>
  25. </LinearLayout>
  26. <LinearLayout
  27. android:layout_width="match_parent"
  28. android:layout_height="70dp"
  29. android:orientation="horizontal"
  30. android:layout_marginTop="20dp">
  31. <TextView
  32. android:layout_width="wrap_content"
  33. android:layout_height="wrap_content"
  34. android:text="Password"
  35. android:layout_marginRight="10dp"
  36. android:layout_gravity="center_vertical"/>
  37. <EditText
  38. android:id="@+id/password"
  39. android:layout_width="0dp"
  40. android:layout_height="wrap_content"
  41. android:layout_weight="1"
  42. android:layout_gravity="center_vertical"/>
  43. </LinearLayout>
  44. <Button
  45. android:id="@+id/login"
  46. android:layout_width="match_parent"
  47. android:layout_height="wrap_content"
  48. android:text="Login"
  49. android:textColor="#F30202"/>
  50. </LinearLayout>
  1. public class LoginActivity extends BaseActivity {
  2. private EditText accountEt;
  3. private EditText passwordEt;
  4. private Button login;
  5. @Override
  6. protected void onCreate(Bundle savedInstanceState) {
  7. super.onCreate(savedInstanceState);
  8. setContentView(R.layout.activity_login);
  9. accountEt = findViewById(R.id.account);
  10. passwordEt = findViewById(R.id.password);
  11. login = findViewById(R.id.login);
  12. login.setOnClickListener(new View.OnClickListener() {
  13. @Override
  14. public void onClick(View v) {
  15. String account = accountEt.getText().toString();
  16. String password = passwordEt.getText().toString();
  17. if(account.equals("account") && password.equals("123456")){
  18. Intent intent = new Intent(LoginActivity.this, IndexActivity.class);
  19. Bundle bundle = new Bundle();
  20. bundle.putString("account",account);
  21. bundle.putString("password",password);
  22. intent.putExtra("bundle",bundle);
  23. startActivity(intent);
  24. finish();
  25. }
  26. }
  27. });
  28. }
  29. }

6.2.2 首页逻辑及页面

  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. <TextView
  9. android:id="@+id/accountTv"
  10. android:layout_width="wrap_content"
  11. android:layout_height="wrap_content" />
  12. <TextView
  13. android:id="@+id/passwordTv"
  14. android:layout_width="wrap_content"
  15. android:layout_height="wrap_content" />
  16. <Button
  17. android:id="@+id/btn_offline"
  18. android:layout_width="match_parent"
  19. android:layout_height="wrap_content"
  20. android:text="强制下线"/>
  21. </LinearLayout>
  1. public class IndexActivity extends BaseActivity {
  2. private TextView accountTv;
  3. private TextView passwordTv;
  4. private Button offlineBtn;
  5. @Override
  6. protected void onCreate(Bundle savedInstanceState) {
  7. super.onCreate(savedInstanceState);
  8. setContentView(R.layout.activity_index);
  9. accountTv = findViewById(R.id.accountTv);
  10. passwordTv = findViewById(R.id.passwordTv);
  11. offlineBtn = findViewById(R.id.btn_offline);
  12. //获取到登录的账号及密码信息
  13. Intent intent = getIntent();
  14. Bundle bundle = intent.getBundleExtra("bundle");
  15. String account = bundle.getString("account").toString();
  16. String password = bundle.getString("password").toString();
  17. accountTv.setText(account);
  18. passwordTv.setText(password);
  19. offlineBtn.setOnClickListener(new View.OnClickListener() {
  20. @Override
  21. public void onClick(View v) {
  22. Intent offlineIntent = new Intent("com.luckyliuqs.offline_broadcast");
  23. //发送强制下线广播
  24. sendBroadcast(offlineIntent);
  25. }
  26. });
  27. }
  28. }

 

 

 

 

 

 

 

 

 

 

 

 

 

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

闽ICP备14008679号