可能重复:
How can I interact with the Lockscreen layout to display text into it, like this app:
我想向Android锁定屏幕显示一些文本,就像Android应用已经实现的“我喜欢它”一样。您可以在https://play.google.com/store/apps/details?id=com.ilikeit.main
上看到Google Play上的应用答案 0 :(得分:2)
没有记录,但这可行; - )
String message = "This is a test";
Settings.System.putString(context.getContentResolver(),
Settings.System.NEXT_ALARM_FORMATTED, message);