1

こんにちは、アプリにカスタム通知があります。Android 2.2 2.3 4.0 では完璧に動作しますが、4.1.1 ジェリービーンでは動作しません。

<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 でなぜわからないのですか? この問題を解決するにはどうすればよいですか?

どうもありがとうございます。

4

1 に答える 1

1

注意:サブクラスNotificationを使用することを支持して、通知をビルドすることは非推奨です。Builderまた、プラットフォーム間で互換性を得るには、 の使用を検討する必要がありますandroid.support.v4.app.NotificationCompat。同じものを使用できるはずRemoteViewsです; 新しい方法に切り替えてみて、何が起こるか見てみましょう。

于 2012-10-29T18:38:20.023 に答える