是否有任何意图或方法来获取使用统计信息中显示的值?我们可以通过拨打密码手动获取## 4636 ##
Intent in = new Intent(Intent.ACTION_MAIN);
in.setClassName("com.android.settings", "com.android.settings.UsageStats");
startActivity(in);
这将显示 UsageStatitics 活动。但我需要在我的应用程序中显示而不是在默认值中显示..
谢谢