Android通知bigcontentview:展开和折叠时的不同布局 [英] Android notification bigcontentview : different layout on expand and collepse

查看:73
本文介绍了Android通知bigcontentview:展开和折叠时的不同布局的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

通知bigcontentview的展开和折叠出现问题.

I have some problem with expand and collapse of notification bigcontentview.

当通知位于通知列表的顶部时,如android文档中所述,具有展开视图,但是当通知不在通知列表的顶部时,通知视图变得很奇怪.我在图中显示了您

When notification is top of the list of notification , there have expand view as stated in android document, but when notification is not on the top of the list of notification, notification view become weird. I show you in the figure

(抱歉,无法在图像中隐藏内容)

(Sorry for hiding content in image)

(1.收合视图)

在此通知中,内容不可见

In this notification contents become invisible

(2.扩展视图)

展开所有可见的内容后,我知道这是正确的行为.

after expand it all content visible, i know that this is the correct behavior.

但是我想在通知折叠时更改布局.这样我就可以更改布局并在那里看到可见的内容

but I want to change layout as notification get collapsed. so i can change the layout and there content visible

有解决方案吗?我如何获得折叠或展开的通知?,如何在展开和折叠期间更改通知的布局?这样所有内容都可见.

Is there any solution of it? how can i get the notification is collapsed or expanded ? and how can i change layout of it during expand and collapse? So all content visible.

是否有任何方法可以为展开和折叠的通知添加不同的布局?

我的代码在下面:

@SuppressLint("NewApi")
    public void updateNotification(String text) {

        PendingIntent pendingIntent = null;
        PendingIntent pendingIntent1 = null;
        PendingIntent pendingIntent2 = null;
        PendingIntent pendingIntent3 = null;
        PendingIntent pendingIntent4 = null;
        PendingIntent pendingIntent5 = null;

        if (mRemoteViews == null) {
            Log.d("LOG", "mRemoteViews is null");
            if (Base.sharedPref.getBoolean("firsttimenotifiation", false)) {

                mRemoteViews = new RemoteViews(getPackageName(),
                        R.layout.custom_notification);
            } else {
                if (isCurrentBuildabove16()) {
                    mRemoteViews = new RemoteViews(getPackageName(),
                            R.layout.customizenotification);
                } else {
                    mRemoteViews = new RemoteViews(getPackageName(),
                            R.layout.customnotification);
                }
            }
        } else {
            if (MusicList.MusicFrom != MusicList.FromNotification) {
            if (mState == State.Paused || mState == State.Stopped || mState == State.Stopappnotification) {


                try {
                    Log.e("LOG", "State.Paused || State.Stopped");
                    mRemoteViews.setImageViewResource(R.id.playpush,
                            R.drawable.playdetailfornoti);

                }catch (Exception e) {}
            } else if (mState == State.Playing) {
                try {
                    Log.e("LOG", "State.Playing");
                    mRemoteViews.setImageViewResource(R.id.playpush,
                            R.drawable.pushdetail);

                } catch (Exception e) {

                }
            } else if (mState == State.Retrieving) {
                try {

                    mRemoteViews.setImageViewResource(R.id.playpush,
                            R.drawable.playdetailfornoti);

                } catch (Exception e) {
                }
            } else {
                try {
                        mRemoteViews.setImageViewResource(R.id.playpush,
                                R.drawable.pushdetail);
                } catch (Exception e) {
                }
            }
        }
        }

        Intent intent = new Intent(ACTION_TOGGLE_PLAYBACK);
        Intent intent1 = new Intent(CLOSE_NOTIFICATION);
        Intent intent2 = new Intent(ACTION_NEXT);
        Intent intent3 = new Intent(ACTION_PREVIOUS);
        Intent intent4 = new Intent(ACTION_STOP);
        intent.putExtra(CLICKFROM, APPNOTIFICATION);


        Intent newintent = new Intent(this, Splace.class);
        newintent.putExtra("newsId", MusicList.CurrentMusicEntity._id);

        newintent.putExtra("playfrom", "detailnotification");
        newintent
                .putExtra("message", MusicList.CurrentMusicEntity.scrape_title);
        newintent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK
                | Intent.FLAG_ACTIVITY_SINGLE_TOP);
        newintent.setAction("actionstring" + System.currentTimeMillis());

        pendingIntent = PendingIntent.getService(getApplicationContext(),
                REQUEST_CODE_STOP, intent, PendingIntent.FLAG_UPDATE_CURRENT);
        pendingIntent1 = PendingIntent.getService(getApplicationContext(), 0,
                intent1, 0);
        pendingIntent2 = PendingIntent.getService(getApplicationContext(),
                REQUEST_CODE_STOP, intent2, PendingIntent.FLAG_UPDATE_CURRENT);
        pendingIntent3 = PendingIntent.getService(getApplicationContext(),
                REQUEST_CODE_STOP, intent3, PendingIntent.FLAG_UPDATE_CURRENT);
        PendingIntent contentIntent = PendingIntent.getActivity(this, 0,
                newintent, 0);
        pendingIntent4 = PendingIntent.getService(getApplicationContext(),
                REQUEST_CODE_STOP, intent4, PendingIntent.FLAG_UPDATE_CURRENT);

        mRemoteViews.setOnClickPendingIntent(R.id.forward, pendingIntent2);
        mRemoteViews.setOnClickPendingIntent(R.id.backword, pendingIntent3);
        mRemoteViews.setOnClickPendingIntent(R.id.playertitle, contentIntent);
        mRemoteViews.setOnClickPendingIntent(R.id.playernewspapaer,
                contentIntent);
        mRemoteViews.setOnClickPendingIntent(R.id.playerimage, contentIntent);

        mRemoteViews.setOnClickPendingIntent(R.id.playpush, pendingIntent);

        mRemoteViews.setOnClickPendingIntent(R.id.close, pendingIntent1);

    // coded differently for those below 16(which is not supported bigview) and above 16 api level
        if (isCurrentBuildabove16()) {
            mNotification = new NotificationCompat.Builder(
                    getApplicationContext())
                    .setSmallIcon(R.drawable.ic_launcher)
                    .setDeleteIntent(pendingIntent4)
                    .setPriority(Notification.FLAG_HIGH_PRIORITY)
                    .setWhen(System.currentTimeMillis())// .setContent(mRemoteViews)
                    .setOngoing(false).build();

            mNotification.bigContentView = mRemoteViews;
        } else {
            mNotification = new NotificationCompat.Builder(
                    getApplicationContext())
                    .setSmallIcon(R.drawable.ic_launcher)
                    .setWhen(System.currentTimeMillis())
                    .setDeleteIntent(pendingIntent4)
                    .setPriority(Notification.PRIORITY_HIGH)
                    .setContent(mRemoteViews).setOngoing(false).build();
        }

        if (!Base.isAppForeground) {

                mNotificationManager.notify(NOTIFICATION_ID, mNotification);    
        }
    }

请帮助我预先感谢

推荐答案

我同时设置了通知的大视图和普通视图,它允许通过展开和折叠来在两者之间进行切换.

I'm setting both big and normal view of notification at the same time, and it allows to switch between the two by expanding and collapsing it.

但是,大视图还有另一个问题:如果我设置了大视图,则每次更新通知时,它都会闪烁.

However there's another issue with big view: it flickering every time I update notification if I set big view..

这篇关于Android通知bigcontentview:展开和折叠时的不同布局的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆