Notifications 通知操作按钮文本始终为Android Pie上的所有大写字母

Notifications 通知操作按钮文本始终为Android Pie上的所有大写字母,notifications,Notifications,Android pie上的通知操作都是大写,而不是句子大小写。有没有办法通过编程来更改它? 这就是我创建通知的方式 PendingIntent pendingIntent = getActivityReplyPendingIntent(pushMessage, showMuteActionAsMute, personEndpoints); Action replyAction = new Action.Builder(R.drawable.ic_reply_16, get

Android pie上的通知操作都是大写,而不是句子大小写。有没有办法通过编程来更改它? 这就是我创建通知的方式

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);
在上面的代码中,我得到了带有句子大小写的动作按钮文本,但在饼图上它不知何故都是大写的。 有什么想法吗