文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

轻松实现Android锁屏功能

2022-06-06 06:57

关注

锁屏需要引入设备超级管理员。在文档Android开发文档的Administration中有详细的说明。Android设备管理系统功能和控制访问。

主要有一下几个步骤:

1  创建广播接收者,实现DeviceAdminReceiver


package com.andy.lockscreen; 
import android.app.admin.DeviceAdminReceiver; 
 
public class MyAdmin extends DeviceAdminReceiver{ 
} 

2 在清单文件中注册该广播(不同普通的广播,需按照说明格式):


<?xml version="1.0" encoding="utf-8"?> 
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
  package="com.andy.lockscreen" 
  android:versionCode="1" 
  android:versionName="1.0" > 
  <uses-sdk 
    android:minSdkVersion="8" 
    android:targetSdkVersion="17" /> 
  <application 
    android:allowBackup="true" 
    android:icon="@drawable/ic_launcher" 
    android:label="@string/app_name" 
    android:theme="@style/AppTheme" > 
    <activity 
      android:name=".MainActivity" 
      android:label="@string/app_name" > 
      <intent-filter> 
        <action android:name="android.intent.action.MAIN" /> 
        <category android:name="android.intent.category.LAUNCHER" /> 
      </intent-filter> 
    </activity> 
     <receiver 
      android:name=".MyAdmin" 
      android:description="@string/sample_device_admin_description" 
      android:label="@string/sample_device_admin" 
      android:permission="android.permission.BIND_DEVICE_ADMIN" > 
      <meta-data 
        android:name="android.app.device_admin" 
        android:resource="@xml/device_admin_sample" /> 
      <intent-filter> 
        <action android:name="android.app.action.DEVICE_ADMIN_ENABLED" /> 
      </intent-filter> 
    </receiver> 
  </application> 
</manifest> 

3 在res下创建xml文件夹,创建对应的xml文件device_admin_sample.xml


<device-admin xmlns:android="http://schemas.android.com/apk/res/android"> 
 <uses-policies> 
  <limit-password /> 
  <watch-login /> 
  <reset-password /> 
  <force-lock /> 
  <wipe-data /> 
  <expire-password /> 
  <encrypted-storage /> 
  <disable-camera /> 
 </uses-policies> 
</device-admin> 

4 在values文件下string.xml添加


<string name="sample_device_admin_description">用户管理员的描述信息</string> 
<string name="sample_device_admin">设置管理权限</string> 

5 界面文件:


<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  xmlns:tools="http://schemas.android.com/tools" 
  android:layout_width="match_parent" 
  android:layout_height="match_parent" 
  android:paddingBottom="@dimen/activity_vertical_margin" 
  android:paddingLeft="@dimen/activity_horizontal_margin" 
  android:paddingRight="@dimen/activity_horizontal_margin" 
  android:paddingTop="@dimen/activity_vertical_margin" 
  tools:context="com.andy.lockscreen.MainActivity" > 
   <Button 
    android:onClick="openAdmin" 
    android:layout_alignParentTop="true" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="开启管理员权限" /> 
  <Button 
    android:onClick="lockcreen" 
    android:layout_centerInParent="true" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="一键锁屏" /> 
  <Button 
    android:onClick="uninstall" 
    android:layout_alignParentBottom="true" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:text="卸载锁屏" /> 
</RelativeLayout> 

6 实现锁屏和开启设备管理员权限,卸载文件


package com.andy.lockscreen; 
import android.app.Activity; 
import android.app.admin.DevicePolicyManager; 
import android.content.ComponentName; 
import android.content.Intent; 
import android.net.Uri; 
import android.os.Bundle; 
import android.view.View; 
import android.widget.Toast; 
public class MainActivity extends Activity { 
   
  private DevicePolicyManager dpm; 
  @Override 
  protected void onCreate(Bundle savedInstanceState) { 
    // TODO Auto-generated method stub 
    super.onCreate(savedInstanceState); 
    setContentView(R.layout.activity_main); 
    dpm = (DevicePolicyManager) getSystemService(DEVICE_POLICY_SERVICE); 
  } 
   
  public void lockcreen(View view) { 
    ComponentName who = new ComponentName(this, MyAdmin.class); 
    // 判断是否已经开启管理员权限 
    if (dpm.isAdminActive(who)) { 
      // 锁屏 
      dpm.lockNow(); 
      // 设置屏幕密码 第一个是密码 第二个是附加参数 
      dpm.resetPassword("123", 0); 
      // 清楚数据 
      // WIPE_EXTERNAL_STORAGE 清楚sdcard的数据 
      // 0 恢复出厂设置 
      //dpm.wipeData(DevicePolicyManager.WIPE_EXTERNAL_STORAGE); 
    } else { 
      // 如果为未开启 提示 
      Toast.makeText(MainActivity.this, "请先开启管理员权限!", Toast.LENGTH_SHORT) 
          .show(); 
    } 
  } 
   
  public void openAdmin(View view) { 
    // 创建一个Intent 添加设备管理员 
    Intent intent = new Intent(DevicePolicyManager.ACTION_ADD_DEVICE_ADMIN); 
    // 激活MyAdmin广播接收着 
    ComponentName who = new ComponentName(this, MyAdmin.class); 
    intent.putExtra(DevicePolicyManager.EXTRA_DEVICE_ADMIN, who); 
    // 说明用户开启管理员权限的好处 
    intent.putExtra(DevicePolicyManager.EXTRA_ADD_EXPLANATION, 
        "开启可以一键锁屏,防止勿碰"); 
    startActivity(intent); 
    Toast.makeText(MainActivity.this, "管理员权限已开启!", Toast.LENGTH_SHORT).show(); 
  } 
   
  public void uninstall(View view) { 
    // 1. 先清除管理员权限 
    ComponentName who = new ComponentName(this, 
        MyAdmin.class); 
    dpm.removeActiveAdmin(who); 
    // 2. 普通应用的卸载 
    Intent intent = new Intent(); 
    intent.setAction("android.intent.action.VIEW"); 
    intent.addCategory("android.intent.category.DEFAULT"); 
    intent.setData(Uri.parse("package:"+getPackageName())); 
    startActivity(intent); 
  } 
} 
您可能感兴趣的文章:Android实现屏幕锁定源码详解Android屏幕锁屏弹窗的正确姿势DEMO详解Android唤醒、解锁屏幕代码实例Android编程实现一键锁屏的方法android禁止锁屏保持常亮(示例代码)Android如何实现锁屏状态下弹窗Android系统永不锁屏永不休眠的方法Android编程实现的一键锁屏程序详解Android编程之自定义锁屏实例分析Android开发实现消除屏幕锁的方法


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯