gpt4 book ai didi

android - android 4.1.1 自定义通知中的选取框问题

转载 作者:行者123 更新时间:2023-11-30 03:57:22 25 4
gpt4 key购买 nike

您好,我在我的应用程序中有我的自定义通知,在 android 2.2 2.3 4.0 中完美运行,但在 4.1.1 jelly bean 中却不行 我试过了,但我无法在我的自定义通知中使用选取框 这是我的代码 .xml:

<TextView
android:id="@+id/notification_title"
style="@style/NotificationTitle"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:ellipsize="marquee"
android:fadingEdge="horizontal"
android:focusable="true"
android:focusableInTouchMode="true"
android:gravity="bottom"
android:marqueeRepeatLimit="marquee_forever"
android:scrollHorizontally="false"
android:singleLine="true"
android:textSize="20sp"
android:textStyle="bold" >

<requestFocus />
</TextView>

<TextView
android:id="@+id/notification_text"
style="@style/NotificationText"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/notification_title"
android:layout_marginTop="3dp"
android:textSize="15sp" >
</TextView>

我的通知码:

            int NOTIFICATION_ID = 1;
String ns = Context.NOTIFICATION_SERVICE;
NotificationManager mNotificationManager = (NotificationManager) getSystemService(ns);
int icon = R.drawable.notificacion;
long when = System.currentTimeMillis();
CharSequence tickerText = "Reproduciendo...";

Notification notification = new Notification(icon, tickerText,
when);


RemoteViews contentView = new RemoteViews(getPackageName(), R.layout.notification);
contentView.setTextViewText(R.id.notification_title, txtMetaTitle.getText().toString());
contentView.setTextViewText(R.id.notification_text, txtMetaUrl.getText().toString());
notification.contentView = contentView;
Intent notificationIntent = new Intent(AACPlayerActivity.this, Principal.class);
PendingIntent contentIntent = PendingIntent.getActivity(AACPlayerActivity.this, 0, notificationIntent, 0);
notification.contentIntent = contentIntent;
notification.flags |= Notification.FLAG_ONGOING_EVENT;
mNotificationManager.notify(NOTIFICATION_ID, notification);
}

我的应用程序运行良好,但字幕不启动不知道为什么在 4.1.1 中?我该怎么做才能解决这个问题?

非常感谢。

最佳答案

请注意:在 Notification 中构建通知已被弃用,取而代之的是使用 Builder 子类。此外,要获得跨平台兼容性,您应该考虑使用 android.support.v4.app.NotificationCompat。您应该能够使用相同的 RemoteViews;尝试切换到新方式,看看会发生什么。

关于android - android 4.1.1 自定义通知中的选取框问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13127341/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com