有没有人成功使用过roottools?我试图检查设备是否已植根(我已经完成了我的研究)并且许多人认为roottools是一个可行的选择。但有没有人让它运行?我尝试的东西很简单。
if (v == findViewById(R.id.button3)){
try {
if(RootTools.isAccessGiven()) {
smode.setVisibility(View.VISIBLE);
}
} catch (TimeoutException e) {
AlertDialog.Builder builder = new Builder(this);
builder.setTitle("Attention!");
builder.setMessage("You do not have root acess");
builder.create().show();
e.printStackTrace();
}
}
我做错了吗?