change foreground-service notification text

This commit is contained in:
Eric House 2018-12-04 05:18:29 -08:00
parent ff51dd7830
commit 4540f9c077
2 changed files with 3 additions and 3 deletions

View file

@ -542,9 +542,8 @@ public class BTService extends XWService {
m_notification = m_notification =
new NotificationCompat.Builder( this, Utils.getChannelId(this) ) new NotificationCompat.Builder( this, Utils.getChannelId(this) )
.setSmallIcon( R.drawable.notify_btservice ) .setSmallIcon( R.drawable.notify_btservice )
.setContentTitle( BTService.class.getSimpleName() ) .setContentText( getString(R.string.bkng_notify_text) )
.setContentText("listening for bluetooth messages...") .setContentIntent( pendIntent )
.setContentIntent(pendIntent)
.build(); .build();
} }

View file

@ -2028,6 +2028,7 @@
<string name="title_btback_enabled">Enable background Bluetooth</string> <string name="title_btback_enabled">Enable background Bluetooth</string>
<string name="summary_btback_enabled">Always listen for Bluetooth messages</string> <string name="summary_btback_enabled">Always listen for Bluetooth messages</string>
<string name="bkng_notify_text">Accepting Bluetooth messages…</string>
<!-- --> <!-- -->
<string name="confirm_sms_title">Confirm your SMS plan</string> <string name="confirm_sms_title">Confirm your SMS plan</string>