Android派上的通知操作全部为大写而不是句子大小写。有没有办法以编程方式更改它? 这就是我创建通知的方式。
PendingIntent pendingIntent = getActivityReplyPendingIntent(pushMessage, showMuteActionAsMute, personEndpoints);
Action replyAction = new Action.Builder(R.drawable.ic_reply_16,
getString(R.string.notification_reply_action), pendingIntent);
builder.addAction(replyAction);
使用上面的代码,我得到带有句子大小写的动作按钮文本,但是在Pie上却全部用大写字母表示。 有什么想法吗?