我想在自定义的时间内显示一条消息或通知,在这种情况下不到 2 秒。
我尝试了两种方法,但都没有真正的帮助: 1. 通过 Toast 显示消息并通过设置持续时间LENGTH_SHORT
,这显然定义了 2 秒的硬编码持续时间。-> 失败 2. 创建一个NotificationCompat.Builder
例程SetTicker
并在一定时间后取消通知。-> 通知(我并不真正需要)在给定时间后消失,但不幸的是,自动收报机会停留更长的时间。:(
private void SetNotification(CharSequence aCharSeq)
{
Intent notificationIntent = new Intent(getApplicationContext(), MainActivity.class);
PendingIntent contentIntent = PendingIntent.getActivity(getApplicationContext(),
m_RandNotificationID, notificationIntent, PendingIntent.FLAG_CANCEL_CURRENT);
NotificationCompat.Builder builder = new NotificationCompat.Builder(this).setTicker(aCharSeq)
.setContentTitle(aCharSeq).setContentText(aCharSeq).setSmallIcon(R.drawable.sound)
.setContentIntent(contentIntent);
Notification noti = builder.build();
m_NotMan.notify(m_RandNotificationID, noti);
new Timer().schedule(CancelAction, 1000L);
}
TimerTask CancelAction = new TimerTask()
{
public void run()
{
m_NotMan.cancel(m_RandNotificationID);
}
};
您的任何想法都会有所帮助。:)
新年快乐
克里斯