来自parse.com的增量通知计数器

时间:2014-01-30 07:51:36

标签: android notifications push-notification parse-platform

我有一个图像视图,并在右上角放置一个文本视图,看起来像一个通知气泡。我从解析中获取数据以获取我的数据库中的表(消息)上的推送通知集。我希望文本在获取通知时动态增加。有没有办法实现它。请帮忙!!

  <ImageView      
        android:id="@+id/news_icon"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:background="@drawable/rounded_corners_white"
        android:layout_centerHorizontal="true"
        android:src="@drawable/event_icon" />

 <LinearLayout
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_alignParentTop="true"
  android:layout_alignRight="@+id/news_icon"
  android:background="@drawable/count_bubble"
  android:gravity="center"
  android:padding="4dp" >

  <TextView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="25"
      android:textColor="@color/white"
      android:textSize="06pt"
      android:textStyle="bold" />

</LinearLayout>

1 个答案:

答案 0 :(得分:0)

只需创建一个用于处理解析推送通知的活动。

然后初始化静态变量并在第一次设置为0。然后,如果推送到达,增加此变量(i ++)并使用接口类,将其发送到任何UI更新活动。

我希望这有帮助..