Android静默安装实现方案 仿360手机助手秒装和智能安装功能
之前有很多朋友都问过我,在android系统中怎样才能实现静默安装呢?所谓的静默安装,就是不用弹出系统的安装界面,在不影响用户任何操作的情况下不知不觉地将程序装好。虽说这种方式看上去不打搅用户,但是却存在着一个问题,因为android系统会在安装界面当中把程序所声明的权限展示给用户看,用户来评估一下这些权限然后决定是否要安装该程序,但如果使用了静默安装的方式,也就没有地方让用户看权限了,相当于用户被动接受了这些权限。在android官方看来,这显示是一种非常危险的行为,因此静默安装这一行为系统是不会开放给开发者的。
但是总是弹出一个安装对话框确实是一种体验比较差的行为,这一点google自己也意识到了,因此android系统对自家的google play商店开放了静默安装权限,也就是说所有从google play上下载的应用都可以不用弹出安装对话框了。这一点充分说明了拥有权限的重要性,自家的系统想怎么改就怎么改。借鉴google的做法,很多国内的手机厂商也采用了类似的处理方式,比如说小米手机在小米商店中下载应用也是不需要弹出安装对话框的,因为小米可以在miui中对android系统进行各种定制。因此,如果我们只是做一个普通的应用,其实不太需要考虑静默安装这个功能,因为我们只需要将应用上架到相应的商店当中,就会自动拥有静默安装的功能。
但是如果我们想要做的也是一个类似于商店的平台呢?比如说像360手机助手,它广泛安装于各种各样的手机上,但都是作为一个普通的应用存在的,而没有google或小米这样的特殊权限,那360手机助手应该怎样做到更好的安装体验呢?为此360手机助手提供了两种方案, 秒装(需root权限)和智能安装,如下图示:
因此,今天我们就模仿一下360手机助手的实现方式,来给大家提供一套静默安装的解决方案。
一、秒装
所谓的秒装其实就是需要root权限的静默安装,其实静默安装的原理很简单,就是调用android系统的pm install命令就可以了,但关键的问题就在于,pm命令系统是不授予我们权限调用的,因此只能在拥有root权限的手机上去申请权限才行。
下面我们开始动手,新建一个installtest项目,然后创建一个silentinstall类作为静默安装功能的实现类,代码如下所示:
/** * 静默安装的实现类,调用install()方法执行具体的静默安装逻辑。 * 原文地址:http://blog.csdn.net/guolin_blog/article/details/47803149 * @author guolin * @since 2015/12/7 */ public class silentinstall { /** * 执行具体的静默安装逻辑,需要手机root。 * @param apkpath * 要安装的apk文件的路径 * @return 安装成功返回true,安装失败返回false。 */ public boolean install(string apkpath) { boolean result = false; dataoutputstream dataoutputstream = null; bufferedreader errorstream = null; try { // 申请su权限 process process = runtime.getruntime().exec("su"); dataoutputstream = new dataoutputstream(process.getoutputstream()); // 执行pm install命令 string command = "pm install -r " + apkpath + "\n"; dataoutputstream.write(command.getbytes(charset.forname("utf-8"))); dataoutputstream.flush(); dataoutputstream.writebytes("exit\n"); dataoutputstream.flush(); process.waitfor(); errorstream = new bufferedreader(new inputstreamreader(process.geterrorstream())); string msg = ""; string line; // 读取命令的执行结果 while ((line = errorstream.readline()) != null) { msg += line; } log.d("tag", "install msg is " + msg); // 如果执行结果中包含failure字样就认为是安装失败,否则就认为安装成功 if (!msg.contains("failure")) { result = true; } } catch (exception e) { log.e("tag", e.getmessage(), e); } finally { try { if (dataoutputstream != null) { dataoutputstream.close(); } if (errorstream != null) { errorstream.close(); } } catch (ioexception e) { log.e("tag", e.getmessage(), e); } } return result; } }
可以看到,silentinstall类中只有一个install()方法,所有静默安装的逻辑都在这个方法中了,那么我们具体来看一下这个方法。首先在第21行调用了runtime.getruntime().exec("su")方法,在这里先申请root权限,不然的话后面的操作都将失败。然后在第24行开始组装静默安装命令,命令的格式就是pm install -r <apk路径>,-r参数表示如果要安装的apk已经存在了就覆盖安装的意思,apk路径是作为方法参数传入的。接下来的几行就是执行上述命令的过程,注意安装这个过程是同步的,因此我们在下面调用了process.waitfor()方法,即安装要多久,我们就要在这里等多久。等待结束之后说明安装过程结束了,接下来我们要去读取安装的结果并进行解析,解析的逻辑也很简单,如果安装结果中包含failure字样就说明安装失败,反之则说明安装成功。
整个方法还是非常简单易懂的,下面我们就来搭建调用这个方法的环境。修改activity_main.xml中的代码,如下所示:
<?xml version="1.0" encoding="utf-8"?> <linearlayout 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:orientation="vertical" 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.example.installtest.mainactivity"> <linearlayout android:layout_width="match_parent" android:layout_height="wrap_content"> <button android:layout_width="wrap_content" android:layout_height="wrap_content" android:onclick="onchooseapkfile" android:text="选择安装包" /> <textview android:id="@+id/apkpathtext" android:layout_width="0dp" android:layout_height="wrap_content" android:layout_weight="1" android:layout_gravity="center_vertical" /> </linearlayout> <view android:layout_width="match_parent" android:layout_height="1dp" android:background="@android:color/darker_gray" /> <button android:layout_width="wrap_content" android:layout_height="wrap_content" android:onclick="onsilentinstall" android:text="秒装" /> <view android:layout_width="match_parent" android:layout_height="1dp" android:background="@android:color/darker_gray" /> <button android:layout_width="wrap_content" android:layout_height="wrap_content" android:onclick="onforwardtoaccessibility" android:text="开启智能安装服务" /> <button android:layout_width="wrap_content" android:layout_height="wrap_content" android:onclick="onsmartinstall" android:text="智能安装" /> </linearlayout>
这里我们先将程序的主界面确定好,主界面上拥有四个按钮,第一个按钮用于选择apk文件的,第二个按钮用于开始秒装,第三个按钮用于开启智能安装服务,第四个按钮用于开始智能安装,这里我们暂时只能用到前两个按钮。那么调用silentinstall的install()方法需要传入apk路
径,因此我们需要先把文件选择器的功能实现好,新建activity_file_explorer.xml和list_item.xml作为文件选择器的布局文件,代码分别如下所示:
<?xml version="1.0" encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android:layout_width="match_parent" android:layout_height="match_parent"> <listview android:id="@+id/list_view" android:layout_width="match_parent" android:layout_height="match_parent" /> </linearlayout>
<?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="wrap_content" android:padding="4dp" android:orientation="horizontal"> <imageview android:id="@+id/img" android:layout_width="32dp" android:layout_margin="4dp" android:layout_gravity="center_vertical" android:layout_height="32dp"/> <textview android:id="@+id/name" android:textsize="18sp" android:textstyle="bold" android:layout_width="match_parent" android:gravity="center_vertical" android:layout_height="50dp"/> </linearlayout>
然后新建fileexploreractivity作为文件选择器的activity,代码如下:
public class fileexploreractivity extends appcompatactivity implements adapterview.onitemclicklistener { listview listview; simpleadapter adapter; string rootpath = environment.getexternalstoragedirectory().getpath(); string currentpath = rootpath; list<map<string, object>> list = new arraylist<>(); @override public void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_file_explorer); listview = (listview) findviewbyid(r.id.list_view); adapter = new simpleadapter(this, list, r.layout.list_item, new string[]{"name", "img"}, new int[]{r.id.name, r.id.img}); listview.setadapter(adapter); listview.setonitemclicklistener(this); refreshlistitems(currentpath); } private void refreshlistitems(string path) { settitle(path); file[] files = new file(path).listfiles(); list.clear(); if (files != null) { for (file file : files) { map<string, object> map = new hashmap<>(); if (file.isdirectory()) { map.put("img", r.drawable.directory); } else { map.put("img", r.drawable.file_doc); } map.put("name", file.getname()); map.put("currentpath", file.getpath()); list.add(map); } } adapter.notifydatasetchanged(); } @override public void onitemclick(adapterview<?> parent, view v, int position, long id) { currentpath = (string) list.get(position).get("currentpath"); file file = new file(currentpath); if (file.isdirectory()) refreshlistitems(currentpath); else { intent intent = new intent(); intent.putextra("apk_path", file.getpath()); setresult(result_ok, intent); finish(); } } @override public void onbackpressed() { if (rootpath.equals(currentpath)) { super.onbackpressed(); } else { file file = new file(currentpath); currentpath = file.getparentfile().getpath(); refreshlistitems(currentpath); } } }
这部分代码由于和我们本篇文件的主旨没什么关系,主要是为了方便demo展示的,因此我就不进行讲解了。
接下来修改mainactivity中的代码,如下所示:
/** * 仿360手机助手秒装和智能安装功能的主activity。 * 原文地址:http://blog.csdn.net/guolin_blog/article/details/47803149 * @author guolin * @since 2015/12/7 */ public class mainactivity extends appcompatactivity { textview apkpathtext; string apkpath; @override protected void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.activity_main); apkpathtext = (textview) findviewbyid(r.id.apkpathtext); } @override protected void onactivityresult(int requestcode, int resultcode, intent data) { if (requestcode == 0 && resultcode == result_ok) { apkpath = data.getstringextra("apk_path"); apkpathtext.settext(apkpath); } } public void onchooseapkfile(view view) { intent intent = new intent(this, fileexploreractivity.class); startactivityforresult(intent, 0); } public void onsilentinstall(view view) { if (!isroot()) { toast.maketext(this, "没有root权限,不能使用秒装", toast.length_short).show(); return; } if (textutils.isempty(apkpath)) { toast.maketext(this, "请选择安装包!", toast.length_short).show(); return; } final button button = (button) view; button.settext("安装中"); new thread(new runnable() { @override public void run() { silentinstall installhelper = new silentinstall(); final boolean result = installhelper.install(apkpath); runonuithread(new runnable() { @override public void run() { if (result) { toast.maketext(mainactivity.this, "安装成功!", toast.length_short).show(); } else { toast.maketext(mainactivity.this, "安装失败!", toast.length_short).show(); } button.settext("秒装"); } }); } }).start(); } public void onforwardtoaccessibility(view view) { } public void onsmartinstall(view view) { } /** * 判断手机是否拥有root权限。 * @return 有root权限返回true,否则返回false。 */ public boolean isroot() { boolean bool = false; try { bool = new file("/system/bin/su").exists() || new file("/system/xbin/su").exists(); } catch (exception e) { e.printstacktrace(); } return bool; } }
可以看到,在mainactivity中,我们对四个按钮点击事件的回调方法都进行了定义,当点击选择安装包按钮时就会调用onchooseapkfile()方法,当点击秒装按钮时就会调用onsilentinstall()方法。在onchooseapkfile()方法方法中,我们通过intent打开了fileexploreractivity,然后在onactivityresult()方法当中读取选择的apk文件路径。在onsilentinstall()方法当中,先判断设备是否root,如果没有root就直接return,然后判断安装包是否已选择,如果没有也直接return。接下来我们开启了一个线程来调用silentinstall.install()方法,因为安装过程会比较耗时,如果不开线程的话主线程就会被卡住,不管安装成功还是失败,最后都会使用toast来进行提示。
代码就这么多,最后我们来配置一下androidmanifest.xml文件:
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.installtest"> <uses-permission android:name="android.permission.read_external_storage" /> <application android:allowbackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsrtl="true" android:theme="@style/apptheme"> <activity android:name=".mainactivity"> <intent-filter> <action android:name="android.intent.action.main" /> <category android:name="android.intent.category.launcher" /> </intent-filter> </activity> <activity android:name=".fileexploreractivity"/> </application> </manifest>
并没有什么特殊的地方,由于选择apk文件需要读取sd卡,因此在androidmanifest.xml文件中要记得声明读sd卡权限。
另外还有一点需要注意,在android 6.0系统中,读写sd卡权限被列为了危险权限,因此如果将程序的targetsdkversion指定成了23则需要做专门的6.0适配,这里简单起见,我把targetsdkversion指定成了22,因为6.0的适配工作也不在文章的讲解范围之内。
现在运行程序,就可以来试一试秒装功能了,切记手机一定要root,效果如下图所示:
可以看到,这里我们选择的网易新闻安装包已成功安装到手机上了,并且没有弹出系统的安装界面,由此证明秒装功能已经成功实现了。
二、智能安装
那么对于root过的手机,秒装功能确实可以避免弹出系统安装界面,在不影响用户操作的情况下实现静默安装,但是对于绝大部分没有root的手机,这个功能是不可用的。那么我们应该怎么办呢?为此360手机助手提供了一种折中方案,就是借助android提供的无障碍服务来实现智能安装。所谓的智能安装其实并不是真正意义上的静默安装,因为它还是要弹出系统安装界面的,只不过可以在安装界面当中释放用户的操作,由智能安装功能来模拟用户点击,安装完成之后自动关闭界面。这个功能是需要用户手动开启的,并且只支持android 4.1之后的手机,如下图所示:
好的,那么接下来我们就模仿一下360手机助手,来实现类似的智能安装功能。
智能安装功能的实现原理要借助android提供的无障碍服务,关于无障碍服务的详细讲解可参考官方文档:。
首先在res/xml目录下新建一个accessibility_service_config.xml文件,代码如下所示:
<accessibility-service xmlns:android="http://schemas.android.com/apk/res/android" android:packagenames="com.android.packageinstaller" android:description="@string/accessibility_service_description" android:accessibilityeventtypes="typeallmask" android:accessibilityflags="flagdefault" android:accessibilityfeedbacktype="feedbackgeneric" android:canretrievewindowcontent="true" />
其中,packagenames指定我们要监听哪个应用程序下的窗口活动,这里写com.android.packageinstaller表示监听android系统的安装界面。description指定在无障碍服务当中显示给用户看的说明信息,上图中360手机助手的一大段内容就是在这里指定的。accessibilityeventtypes指定我们在监听窗口中可以模拟哪些事件,这里写typeallmask表示所有的事件都能模拟。accessibilityflags可以指定无障碍服务的一些附加参数,这里我们传默认值flagdefault就行。accessibilityfeedbacktype指定无障碍服务的反馈方式,实际上无障碍服务这个功能是android提供给一些残疾人士使用的,比如说盲人不方便使用手机,就可以借助无障碍服务配合语音反馈来操作手机,而我们其实是不需要反馈的,因此随便传一个值就可以,这里传入feedbackgeneric。最后canretrievewindowcontent指定是否允许我们的程序读取窗口中的节点和内容,必须写true。
记得在string.xml文件中写一下description中指定的内容,如下所示:
<resources> <string name="app_name">installtest</string> <string name="accessibility_service_description">智能安装服务,无需用户的任何操作就可以自动安装程序。</string> </resources>
接下来修改androidmanifest.xml文件,在里面配置无障碍服务:
<?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.example.installtest"> <uses-permission android:name="android.permission.read_external_storage" /> <application android:allowbackup="true" android:icon="@mipmap/ic_launcher" android:label="@string/app_name" android:supportsrtl="true" android:theme="@style/apptheme"> ...... <service android:name=".myaccessibilityservice" android:label="我的智能安装" android:permission="android.permission.bind_accessibility_service"> <intent-filter> <action android:name="android.accessibilityservice.accessibilityservice" /> </intent-filter> <meta-data android:name="android.accessibilityservice" android:resource="@xml/accessibility_service_config" /> </service> </application> </manifest>
这部分配置的内容多数是固定的,必须要声明一个android.permission.bind_accessibility_service的权限,且必须要有一个值为android.accessibilityservice.accessibilityservice的action,然后我们通过<meta-data>将刚才创建的配置文件指定进去。
接下来就是要去实现智能安装功能的具体逻辑了,创建一个myaccessibilityservice类并继承自accessibilityservice,代码如下所示:
/** * 智能安装功能的实现类。 * 原文地址:http://blog.csdn.net/guolin_blog/article/details/47803149 * @author guolin * @since 2015/12/7 */ public class myaccessibilityservice extends accessibilityservice { map<integer, boolean> handledmap = new hashmap<>(); public myaccessibilityservice() { } @override public void onaccessibilityevent(accessibilityevent event) { accessibilitynodeinfo nodeinfo = event.getsource(); if (nodeinfo != null) { int eventtype = event.geteventtype(); if (eventtype== accessibilityevent.type_window_content_changed || eventtype == accessibilityevent.type_window_state_changed) { if (handledmap.get(event.getwindowid()) == null) { boolean handled = iteratenodesandhandle(nodeinfo); if (handled) { handledmap.put(event.getwindowid(), true); } } } } } private boolean iteratenodesandhandle(accessibilitynodeinfo nodeinfo) { if (nodeinfo != null) { int childcount = nodeinfo.getchildcount(); if ("android.widget.button".equals(nodeinfo.getclassname())) { string nodecontent = nodeinfo.gettext().tostring(); log.d("tag", "content is " + nodecontent); if ("安装".equals(nodecontent) || "完成".equals(nodecontent) || "确定".equals(nodecontent)) { nodeinfo.performaction(accessibilitynodeinfo.action_click); return true; } } else if ("android.widget.scrollview".equals(nodeinfo.getclassname())) { nodeinfo.performaction(accessibilitynodeinfo.action_scroll_forward); } for (int i = 0; i < childcount; i++) { accessibilitynodeinfo childnodeinfo = nodeinfo.getchild(i); if (iteratenodesandhandle(childnodeinfo)) { return true; } } } return false; } @override public void oninterrupt() { } }
代码并不复杂,我们来解析一下。每当窗口有活动时,就会有消息回调到onaccessibilityevent()方法中,因此所有的逻辑都是从这里开始的。首先我们可以通过传入的accessibilityevent参数来获取当前事件的类型,事件的种类非常多,但是我们只需要监听type_window_content_changed和type_window_state_changed这两种事件就可以了,因为在整个安装过程中,这两个事件必定有一个会被触发。当然也有两个同时都被触发的可能,那么为了防止二次处理的情况,这里我们使用了一个map来过滤掉重复事件。
接下来就是调用iteratenodesandhandle()方法来去解析当前界面的节点了,这里我们通过递归的方式将安装界面中所有的子节点全部进行遍历,当发现按钮节点的时候就进行判断,按钮上的文字是不是“安装”、“完成”、“确定”这几种类型,如果是的话就模拟一下点击事件,这样也就相当于帮用户自动操作了这些按钮。另外从android 4.4系统开始,用户需要将应用申请的所有权限看完才可以点击安装,因此如果我们在节点中发现了scrollview,那就模拟一下滑动事件,将界面滑动到最底部,这样安装按钮就可以点击了。
最后,回到mainactivity中,来增加对智能安装功能的调用,如下所示:
/** * 仿360手机助手秒装和智能安装功能的主activity。 * 原文地址:http://blog.csdn.net/guolin_blog/article/details/47803149 * @author guolin * @since 2015/12/7 */ public class mainactivity extends appcompatactivity { ...... public void onforwardtoaccessibility(view view) { intent intent = new intent(settings.action_accessibility_settings); startactivity(intent); } public void onsmartinstall(view view) { if (textutils.isempty(apkpath)) { toast.maketext(this, "请选择安装包!", toast.length_short).show(); return; } uri uri = uri.fromfile(new file(apkpath)); intent localintent = new intent(intent.action_view); localintent.setdataandtype(uri, "application/vnd.android.package-archive"); startactivity(localintent); } }
当点击了开启智能安装服务按钮时,我们通过intent跳转到系统的无障碍服务界面,在这里启动智能安装服务。当点击了智能安装按钮时,我们通过intent跳转到系统的安装界面,之后所有的安装操作都会自动完成了。
现在可以重新运行一下程序,效果如下图所示:
可以看到,当打开网易新闻的安装界面之后,我们不需要进行任何的手动操作,界面的滑动、安装按钮、完成按钮的点击都是自动完成的,最终会自动回到手机原来的界面状态,这就是仿照360手机助手实现的智能安装功能。
好的,本篇文章的所有内容就到这里了,虽说不能说完全实现静默安装,但是我们已经在权限允许的范围内尽可能地去完成了,并且360手机助手也只能实现到这一步而已,那些被产品经理逼着去实现静默安装的程序员们也有理由交差了吧?
源码下载:http://xiazai.jb51.net/201611/yuanma/androidinstalltest(jb51.net).rar
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: 拿取Linux的GUI界面壁纸原图(以deepin为例)
下一篇: 双系统引导修复与引导项删除