Android解除安裝程式之後跳轉到指定的反饋頁面
轉一個其他人解除安裝監聽方面的例項:
/*
* 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 !");
}
相關文章
- 指定秒數之後跳轉到其他頁面程式碼
- 讓頁面在指定時間之後跳轉程式碼
- nginx 設定 404 500 頁面跳轉到指定頁面Nginx
- [BUG反饋]onethink安裝時無法跳轉到step2
- vue-cli 跳轉到頁面指定位置Vue
- 微信公眾號開發之H5頁面跳轉到指定的小程式H5
- 點選連結跳轉到應用指定頁面
- jQuery點選平滑跳轉到頁面指定位置jQuery
- Android 外部喚起應用跳轉指定頁面Android
- 倒數計時指定時間之後實現頁面跳轉效果
- js頁面跳轉的問題(跳轉到父頁面、最外層頁面、本頁面)JS
- ios跳轉到通用頁面iOS
- 在session過期後如何跳轉到登入頁面Session
- Android應用如何監聽自己是否被解除安裝及解除安裝反饋功能的實現(第三版)Android
- JavaScript頁面跳轉程式碼JavaScript
- 倒數計時指定時間頁面跳轉程式碼例項
- [BUG反饋]安裝bug?
- WebSecurityConfigurerAdapter 關於成功之後頁面跳轉的配置WebAPT
- 微信瀏覽器跳轉頁面後再返回,如何恢復到跳轉前的位置的問題。瀏覽器
- js實現操作成功之後自動跳轉頁面JS
- nginx訪問預設index.html首頁跳轉指定頁面NginxIndexHTML
- app跳轉到指定appAPP
- vue頁面跳轉Vue
- Flutter頁面跳轉Flutter
- javascript 跳轉頁面JavaScript
- js頁面跳轉JS
- Android應用中,跳轉到App的詳細設定頁面,設定許可權頁面AndroidAPP
- 2024-05-03 uni跳轉頁面a成功後會立即再跳轉到頁面b,導致無法展現頁面a ==》頁面a業務邏輯沒捋清楚
- react跳轉url,跳轉外鏈,新頁面開啟頁面React
- 微信小程式頁面跳轉傳參微信小程式
- [BUG反饋]模型管理中刪除模型後頁面不重新整理模型
- vue+cube 評價/意見反饋頁面Vue
- Android Jetpack - 使用 Navigation 管理頁面跳轉AndroidJetpackNavigation
- js跳轉頁面方法(轉)JS
- Android 監聽應用解除安裝:彈出反饋介面並上傳客戶端資料Android客戶端
- Flutter:如何跳轉頁面?Flutter
- JavaScript 頁面跳轉效果JavaScript
- router跳轉page頁面