Android Wearと統合されたメッセージング アプリがあります。ハングアウトと同様に、Android Wear スマートウォッチで通知を選択するときに、選択したメッセージに対応する会話を表示する 2 番目のカードにスワイプできます。通知を使用して実装しますBigTextStyle
が、最大文字数がBigTextStyle
サポートされていることを知る必要があるため、会話が大きすぎて完全に収まらない場合に会話を適切にトリミングできます。ドキュメントでこの情報を見つけることができませんでした。
いくつかの調査の後、少なくとも Android Wear エミュレーターでは、最大文字数は約 5000 です。したがって、次のようなことができます。
// scroll to the bottom of the notification card
NotificationCompat.WearableExtender extender = new NotificationCompat.WearableExtender().setStartScrollBottom(true);
// get conversation messages in a big single text
CharSequence text = getConversationText();
// trim text to its last 5000 chars
int start = Math.max(0, text.length() - 5000);
text = text.subSequence(start, text.length());
// set text into the big text style
NotificationCompat.BigTextStyle style = new NotificationCompat.BigTextStyle().bigText(text);
// build notification
Notification notification = new NotificationCompat.Builder(context).setStyle(style).extend(extender).build();
BigTextStyle
通知に収まる正確な文字数を知っている人はいますか? 異なるデバイス間で変更されますか?