GCM Android通知未扩展

时间:2016-06-29 19:40:17

标签: android notifications google-cloud-messaging push

我已经为iOS和Android实现了GCM,这部分似乎工作得很好。我的问题是,当通知中的文字超过一行时,我在Android上的通知无法展开。我一直在查找建议使用 BigView 调用通知的解决方案。我的通知是通过GCM直接进入设备的,我不会在两者之间进行编辑。我不知道如何处理这个问题。

我是否只是从通知中获取数据并在本地调用通知来解决此问题,或者从服务器发送GCM时我可以使用哪些内容?

编辑: 我扩展了通知工作,但它仍然没有解决我的问题,因为它显示重复的通知。一个来自GCM和第二个本地调用的通知。我尝试将GCM通知中的标记应用于本地,但它没有解决问题。

2 个答案:

答案 0 :(得分:3)

尝试在通知构建器中设置此样式:

.setStyle(new NotificationCompat.BigTextStyle().bigText("your_message_here"))

答案 1 :(得分:0)

为通知创建通知布局。然后在你的textview集' lines = 2'或使用多线'。

custom_notification.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:id="@+id/layout"
 android:layout_width="fill_parent"
  android:layout_height="fill_parent"
    android:padding="10dp" >
    <ImageView android:id="@+id/image"
    android:layout_width="wrap_content"
    android:layout_height="fill_parent"
    android:layout_alignParentLeft="true"
    android:layout_marginRight="10dp" />
    <TextView android:id="@+id/title"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_toRightOf="@id/image"
    style="Custom Notification Title" />
 <TextView android:id="@+id/text"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_toRightOf="@id/image"
    android:layout_below="@id/title"
    style="Custom Notification Text" />
</RelativeLayout>

在你的活动onCreate函数或内部接收器中添加此项,以防gcm或fcm(你的通知建立)

int icon = R.drawable.ic_launcher;
    long when = System.currentTimeMillis();
    Notification notification = new Notification(icon, "Custom Notification", when);

    NotificationManager mNotificationManager = (NotificationManager)getSystemService(NOTIFICATION_SERVICE);

    RemoteViews contentView = new RemoteViews(getPackageName(), R.layout.custom_notification);
    contentView.setImageViewResource(R.id.image, R.drawable.ic_launcher);
    contentView.setTextViewText(R.id.title, "Custom notification");
    contentView.setTextViewText(R.id.text, "This is a custom layout");
    notification.contentView = contentView;

    Intent notificationIntent = new Intent(this, MainActivity.class);
    PendingIntent contentIntent = PendingIntent.getActivity(this, 0, notificationIntent, 0);
    notification.contentIntent = contentIntent;

    notification.flags |= Notification.FLAG_NO_CLEAR; //Do not clear the notification
    notification.defaults |= Notification.DEFAULT_LIGHTS; // LED
    notification.defaults |= Notification.DEFAULT_VIBRATE; //Vibration
    notification.defaults |= Notification.DEFAULT_SOUND; // Sound

    mNotificationManager.notify(1, notification);