Java tutorial
//package com.java2s; /* * * AndroidPopWinPermission Project * * Copyright(c) 2016 BunnyBlue <bunnyblueair@gmail.com> * * This file is part of AndroidPopWinPermission. * * AndroidPopWinPermission is free software: you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation, either * version 3 of the License, or (at your option) any later version. * * AndroidPopWinPermission is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with AndroidPopWinPermission. If not, see <http://www.gnu.org/licenses/lgpl.txt> * * * / */ import android.content.Context; import android.database.Cursor; import android.net.Uri; public class Main { public static int getStatus(Context context) { Cursor query = null; String packageName = context.getPackageName(); try { query = context.getContentResolver().query(Uri.parse("content://com.lbe.security.miui.permmgr/active"), null, "pkgName=?", new String[] { packageName }, null); if (query == null) { return 0; } if (query.moveToFirst()) { int status = query.getInt(query.getColumnIndex("userAccept")); if (query == null) { return status; } } query.close(); } catch (Exception e) { return -1; } return -1; } }