我想我们可以用logcat分析它的输出。
在所有类似的程序中,我发现了这样的权限:
android.permission.READ_LOGS
这意味着他们都使用它,但它似乎程序开始,并在那之后,我们的程序(应用程序保护器)将开始和带来前面。
使用以下代码:try
{
Process mLogcatProc = null;
BufferedReader reader = null;
mLogcatProc = Runtime.getRuntime().exec(new String[]{"logcat", "-d"});
reader = new BufferedReader(new InputStreamReader(mLogcatProc.getInputStream()));
String line;
final StringBuilder log = new StringBuilder();
String separator = System.getProperty("line.separator");
while ((line = reader.readLine()) != null)
{
log.append(line);
log.append(separator);
}
String w = log.toString();
Toast.makeText(getApplicationContext(),w, Toast.LENGTH_LONG).show();
}
catch (Exception e)
{
Toast.makeText(getApplicationContext(), e.getMessage(), Toast.LENGTH_LONG).show();
}
不要忘记在Manifest文件中添加它的权限。