我在我的应用程序(启动器)中使用 android 设置,所以我可以设置密码保护,但远非某些选项卡/设备能够以不同的方法访问设置,所以我正在尝试为整个“系统(设备)设置”,我该怎么做,有可能吗,从我的搜索中我找到了这个Android,检测其他应用程序何时启动有
谁能告诉我它是如何工作的......
它说这不起作用来自 JellyBean 及以上。READ_LOGS 权限现在只保留给系统应用程序,JellyBean 有什么办法吗?
问问题
3913 次
1 回答
0
如果评论中提出的解决方案对您来说没问题,我在这里找到了这个:
AlertDialog.Builder alert = new AlertDialog.Builder(MyFeedActivity.this);
LayoutInflater inflater=MyFeedActivity.this.getLayoutInflater();
//this is what I did to added the layout to the alert dialog
View layout=inflater.inflate(R.layout.dialog,null);
alert.setView(layout);
final EditText usernameInput=(EditText)layout.findViewById(R.id.dialogusername);
final EditText passwordInput=(EditText)layout.findViewById(R.id.dialogpassword);
我希望它能满足您的需求。
于 2013-07-04T08:41:31.837 回答