Android卸載程序以後跳轉到指定的反饋頁面 分類: Android 2014-12-26 21:02 2075人閱讀 評論(15) 收藏

今天去面試,一面還能夠,到了第二面的時候也差很少吧,最後來了一題,說那個360被卸載以後會跳轉到指定的反饋頁面,是怎麼弄的?這個以前沒有研究過,可是這個效果是見過的。當時想到了,Android中卸載應用的時候會發送一個廣播,咱們能夠接收到這個廣播,而後處理一下。結果他來個反問句:這樣能夠嗎?而後仔細想一想,既然他這麼問了,應該是有問題,在想一想,發現的確是有問題,當應用被卸載了,那個接收到廣播處理以後的邏輯代碼放在那裏執行?好吧,而後就沒戲了~~html

回來了,就百度了一下,果真網上彷佛有相關的問題的解答,這裏就將他們的步驟在細化一下了:java


其實這個問題的核心就在於:應用被卸載了,若是可以作到後續的代碼邏輯繼續執行android


咱們再來仔細分析一下場景和流程web

一個應用被用戶卸載確定是有理由的,而開發者卻未必能得知這一重要的理由,畢竟用戶不多會主動反饋建議,多半就是用得不爽就卸,若是能在被卸載後獲取到用戶的一些反饋,那對開發者進一步改進應用是很是有利的。目前據我所知,國內的Android應用中實現這一功能的只有360手機衛士、360平板衛士,那麼如何實現這一功能的?

咱們能夠把實現卸載反饋的問題轉化爲監聽本身是否被卸載,只有得知本身被卸載,才能夠設計相應的反饋處理流程。如下的列表是我在研究這一問題的思路:

一、註冊BroadcastReceiver,監聽"android.intent.action.PACKAGE_REMOVED"系統廣播
結果:NO。未寫代碼,直接分析,卸載的第一步就是退出當前應用的主進程,而此廣播是在已經卸載完成後才發出的,此時主進程都沒有了,去哪onReceive()呢?

二、若能收到"將要卸載XX包"的系統廣播,在主進程被退出以前就搶先進行反饋處理就行了,惋惜沒有這樣的系統廣播,不過通過調研,卻是發現了一個辦法,讀取系統log,當日志中包含"android.intent.action.DELETE"和本身的包名時,意味着本身將要被卸載。
結果:NO。調試時發現此方法有兩個缺陷,(1)點擊設置中的卸載按鈕即發出此Intent,此時用戶還沒有在彈框中確認卸載;(2)pm命令卸載不出發此Intent,意味着被諸如手機安全管家,豌豆莢等軟件卸載時,沒法提早得知卸載意圖。

三、因爲時間點不容易把控,因此乾脆不依賴系統廣播或log,考慮到卸載過程會刪除"/data/data/包名"目錄,咱們能夠用線程直接輪詢這個目錄是否存在,以此爲依據判斷本身是否被卸載。
結果:NO。同方法1,主進程退出,相應的線程一定退出,線程還沒等到判斷目錄是否存在就已經被銷燬了。

四、改用C端進程輪詢"/data/data/包名"目錄是否存在
結果:YES。藉助Java端進程fork出來的C端進程在應用被卸載後不會被銷燬。
面試


解決的方案肯定了,下面來看一下代碼吧:express

/*
 * Copyright (C) 2009 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 */

#include <jni.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <android/log.h>
#include <unistd.h>
#include <sys/inotify.h>

#include "com_example_uninstalldemos_NativeClass.h"

/* 宏定義begin */
//清0宏
#define MEM_ZERO(pDest, destSize) memset(pDest, 0, destSize)

#define LOG_TAG "onEvent"

//LOG宏定義
#define LOGD(fmt, args...) __android_log_print(ANDROID_LOG_INFO, LOG_TAG, fmt, ##args)

JNIEXPORT jstring JNICALL Java_com_example_uninstalldemos_NativeClass_init(JNIEnv* env, jobject thiz) {

	//初始化log
	LOGD("init start...");

	//fork子進程,以執行輪詢任務
	pid_t pid = fork();
	if (pid < 0) {
		//出錯log
		LOGD("fork failed...");
	} else if (pid == 0) {
		//子進程註冊"/data/data/pym.test.uninstalledobserver"目錄監聽器
		int fileDescriptor = inotify_init();
		if (fileDescriptor < 0) {
			LOGD("inotify_init failed...");
			exit(1);
		}

		int watchDescriptor;
		watchDescriptor = inotify_add_watch(fileDescriptor,"/data/data/com.example.uninstalldemos", IN_DELETE);
		LOGD("watchDescriptor=%d",watchDescriptor);
		if (watchDescriptor < 0) {
			LOGD("inotify_add_watch failed...");
			exit(1);
		}

		//分配緩存,以便讀取event,緩存大小=一個struct inotify_event的大小,這樣一次處理一個event
		void *p_buf = malloc(sizeof(struct inotify_event));
		if (p_buf == NULL) {
			LOGD("malloc failed...");
			exit(1);
		}
		//開始監聽
		LOGD("start observer...");
		size_t readBytes = read(fileDescriptor, p_buf,sizeof(struct inotify_event));

		//read會阻塞進程,走到這裏說明收到目錄被刪除的事件,註銷監聽器
		free(p_buf);
		inotify_rm_watch(fileDescriptor, IN_DELETE);

		//目錄不存在log
		LOGD("uninstall");

		//執行命令am start -a android.intent.action.VIEW -d http://shouji.360.cn/web/uninstall/uninstall.html
		execlp(
			"am", "am", "start", "-a", "android.intent.action.VIEW", "-d", 
			"http://shouji.360.cn/web/uninstall/uninstall.html", (char *)NULL);
		//4.2以上的系統因爲用戶權限管理更嚴格,須要加上 --user 0
		//execlp("am", "am", "start", "--user", "0", "-a",
		//"android.intent.action.VIEW", "-d", "https://www.google.com",(char *) NULL);

	} else {
		//父進程直接退出,使子進程被init進程領養,以免子進程僵死
	}

	return (*env)->NewStringUTF(env, "Hello from JNI !");
}


這裏面主要是用到了Linux中的inotify,這個相關的內容能夠自行百度一下~~
apache

這裏有一個很重要的知識,也是解決這個問題的關鍵所在,就是Linux中父進程死了,可是子進程不會死,而是被init進程領養。因此當咱們應用(進程)卸載了,可是咱們fork的子進程並不會銷燬,因此咱們上述的邏輯代碼就能夠放到這裏來作了。(學習了)緩存


Android應用程序代碼:安全

MyActivity.javaapp

package com.example.uninstalldemos;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;

public class MyActivity extends Activity {

	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);

		Intent intent = new Intent(this, SDCardListenSer.class);
		startService(intent);
		NativeClass nativeObj = new NativeClass();
		nativeObj.init();
	}

	static {
		Log.d("onEvent", "load jni lib");
		System.loadLibrary("hello-jni");
	}
}
SDCardListenSer.java
package com.example.uninstalldemos;

import android.annotation.SuppressLint;
import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.net.Uri;
import android.os.Environment;
import android.os.FileObserver;
import android.os.IBinder;
import android.util.Log;
import java.io.File;
import java.io.IOException;

public class SDCardListenSer extends Service {
	SDCardListener[] listenners;

	@SuppressLint("SdCardPath")
	@Override
	public void onCreate() {
		SDCardListener[] listenners = { 
				new SDCardListener("/data/data/com.example.uninstalldemos", this),
				new SDCardListener(Environment.getExternalStorageDirectory() + File.separator + "1.txt", this) };
		this.listenners = listenners;

		Log.i("onEvent", "=========onCreate============");
		for (SDCardListener listener : listenners) {
			listener.startWatching();
		}

		File file = new File(Environment.getExternalStorageDirectory() + File.separator + "1.txt");
		Log.i("onEvent", "dddddddddddddddddddddd nCreate============");
		if (file.exists())
			file.delete();
		/*try {
			file.createNewFile();
		} catch (IOException e) {
			e.printStackTrace();
		}*/
	}

	@Override
	public void onDestroy() {
		for (SDCardListener listener : listenners) {
			listener.stopWatching();
		}
	}

	@Override
	public IBinder onBind(Intent intent) {
		return null;
	}
}

class SDCardListener extends FileObserver {
	private String mPath;
	private final Context mContext;

	public SDCardListener(String parentpath, Context ctx) {
		super(parentpath);
		this.mPath = parentpath;
		this.mContext = ctx;
	}

	@Override
	public void onEvent(int event, String path) {
		int action = event & FileObserver.ALL_EVENTS;
		switch (action) {

		case FileObserver.DELETE:
			Log.i("onEvent", "delete path: " + mPath + File.separator + path);
			//openBrowser();
			break;

		case FileObserver.MODIFY:
			Log.i("onEvent", "更改目錄" + mPath + File.separator + path);
			break;

		case FileObserver.CREATE:
			Log.i("onEvent", "建立文件" + mPath + File.separator + path);
			break;

		default:
			break;
		}
	}

	protected void openBrowser() {
		Uri uri = Uri.parse("http://aoi.androidesk.com");
		Intent intent = new Intent(Intent.ACTION_VIEW, uri);
		mContext.startActivity(intent);
	}

	public void exeShell(String cmd) {
		try {
			Runtime.getRuntime().exec(cmd);
		} catch (Throwable t) {
			t.printStackTrace();
		}
	}

}


開啓一個服務,在這個服務中咱們能夠看到,用到了一個很重要的一個類FileObserver,也是用來監聽文件的變動的,這個和上面的inotify功能差很少。關於這個類的具體用法和介紹,能夠自行百度呀~~


運行:

咱們將應用安裝以後,打開log進行檢測日誌:

adb logcat -s onEvent



當咱們從設置中卸載應用的時候,會彈出以下界面:


注:這裏我特定說了是從設置界面中去卸載應用,由於當我使用小米手機自帶的那種快捷卸載應用的時候並不會跳轉。這個具體的緣由還有待解決(固然360的這個問題也沒有解決掉。。)


總結:

我寫這篇文章的目的以及我從這個過程當中惟一學習到的一個知識點就是當父進程消亡了,子進程並不會消亡,因此咱們能夠記住這個知識點,之後遇到像應用被卸載以後的一些邏輯操做均可以採用這種方式去解決。


JNI的Demo下載

Android中的Demo下載

相關文章
相關標籤/搜索