輕松實(shí)現(xiàn)Android鎖屏功能
鎖屏需要引入設(shè)備超級管理員。在文檔Android開發(fā)文檔的Administration中有詳細(xì)的說明。Android設(shè)備管理系統(tǒng)功能和控制訪問。
主要有一下幾個(gè)步驟:
1 創(chuàng)建廣播接收者,實(shí)現(xiàn)DeviceAdminReceiver
package com.andy.lockscreen;
import android.app.admin.DeviceAdminReceiver;
/**
* @author Zhang,Tianyou
* @version 2014年11月20日 下午9:51:42
*
* 特殊的廣播接受者 接收 管理員權(quán)限廣播
*/
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下創(chuàng)建xml文件夾,創(chuàng)建對應(yīng)的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">設(shè)置管理權(quán)限</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="開啟管理員權(quán)限" />
<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 實(shí)現(xiàn)鎖屏和開啟設(shè)備管理員權(quán)限,卸載文件
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 {
/**
* 設(shè)備策略服務(wù)
*/
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);
}
/**
* 鎖屏
*
* @param view
*/
public void lockcreen(View view) {
ComponentName who = new ComponentName(this, MyAdmin.class);
// 判斷是否已經(jīng)開啟管理員權(quán)限
if (dpm.isAdminActive(who)) {
// 鎖屏
dpm.lockNow();
// 設(shè)置屏幕密碼 第一個(gè)是密碼 第二個(gè)是附加參數(shù)
dpm.resetPassword("123", 0);
// 清楚數(shù)據(jù)
// WIPE_EXTERNAL_STORAGE 清楚sdcard的數(shù)據(jù)
// 0 恢復(fù)出廠設(shè)置
//dpm.wipeData(DevicePolicyManager.WIPE_EXTERNAL_STORAGE);
} else {
// 如果為未開啟 提示
Toast.makeText(MainActivity.this, "請先開啟管理員權(quán)限!", Toast.LENGTH_SHORT)
.show();
}
}
/**
* 代碼開啟管理權(quán)限
*
* @param view
*/
public void openAdmin(View view) {
// 創(chuàng)建一個(gè)Intent 添加設(shè)備管理員
Intent intent = new Intent(DevicePolicyManager.ACTION_ADD_DEVICE_ADMIN);
// 激活MyAdmin廣播接收著
ComponentName who = new ComponentName(this, MyAdmin.class);
intent.putExtra(DevicePolicyManager.EXTRA_DEVICE_ADMIN, who);
// 說明用戶開啟管理員權(quán)限的好處
intent.putExtra(DevicePolicyManager.EXTRA_ADD_EXPLANATION,
"開啟可以一鍵鎖屏,防止勿碰");
startActivity(intent);
Toast.makeText(MainActivity.this, "管理員權(quán)限已開啟!", Toast.LENGTH_SHORT).show();
}
/**
* 卸載當(dāng)前的軟件 設(shè)備管理數(shù)據(jù)特殊應(yīng)用 所以不能普通卸載
*/
public void uninstall(View view) {
// 1. 先清除管理員權(quán)限
ComponentName who = new ComponentName(this,
MyAdmin.class);
dpm.removeActiveAdmin(who);
// 2. 普通應(yīng)用的卸載
Intent intent = new Intent();
intent.setAction("android.intent.action.VIEW");
intent.addCategory("android.intent.category.DEFAULT");
intent.setData(Uri.parse("package:"+getPackageName()));
startActivity(intent);
}
}
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
Android調(diào)用系統(tǒng)時(shí)間格式顯示時(shí)間信息
這篇文章主要介紹了Android調(diào)用系統(tǒng)時(shí)間格式顯示時(shí)間信息的使用方法,代碼很簡單2014-01-01
Android實(shí)現(xiàn)菜單關(guān)聯(lián)activity的方法示例
這篇文章主要介紹了Android實(shí)現(xiàn)菜單關(guān)聯(lián)activity的方法,涉及Android使用Intent實(shí)現(xiàn)菜單關(guān)聯(lián)activity相關(guān)操作技巧,需要的朋友可以參考下2019-03-03
Android實(shí)現(xiàn)整理PackageManager獲取所有安裝程序信息
這篇文章主要介紹了Android實(shí)現(xiàn)整理PackageManager獲取所有安裝程序信息的方法,實(shí)例分析了Android使用PackageManager獲取安裝程序信息的具體步驟與相關(guān)技巧,需要的朋友可以參考下2016-01-01
Android自定義View Material Design理念詳解
這篇文章主要為大家介紹了Android自定義View Material Design理念詳解,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2023-02-02
Android AnalogClock簡單使用方法實(shí)例
這篇文章主要介紹了Android AnalogClock簡單使用方法,結(jié)合實(shí)例形式簡單分析了AnalogClock的布局調(diào)用技巧,需要的朋友可以參考下2016-01-01
Android中的ViewPager視圖滑動切換類的入門實(shí)例教程
Android中ViewPager通常與Fragments組件共同使用來實(shí)現(xiàn)視圖切換功能,本文就帶大家一起來學(xué)習(xí)Android中的ViewPager視圖滑動切換類的入門實(shí)例教程:2016-06-06
Activit跳轉(zhuǎn)動畫之界面上某個(gè)位置并裂開上下拉伸動畫跳轉(zhuǎn)
這篇文章主要介紹了Activit跳轉(zhuǎn)動畫之界面上某個(gè)位置并裂開上下拉伸動畫跳轉(zhuǎn)的相關(guān)資料,需要的朋友可以參考下2016-07-07
Android audio音頻流數(shù)據(jù)異常問題解決分析
這篇文章主要為大家介紹了Android audio音頻流數(shù)據(jù)異常問題解決分析,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步,早日升職加薪2022-08-08

