如何在Android中显示此通知?

时间:2016-11-14 06:25:46

标签: java android ios

我正在寻找这个库来显示这种通知,当我的列表上有新的更新时,我可以显示这种通知。

以下是Facebook或LinkedIn中的示例。

enter image description here

2 个答案:

答案 0 :(得分:0)

您可以将此库popup bubble用于上述要求

在你的xml中

<com.webianks.library.PopupBubble
  android:layout_margin="16dp"
  android:id="@+id/popup_bubble"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:layout_centerHorizontal="true"
/>

在您的活动中

PopupBubble popupBubble = (PopupBubble) findViewById(R.id.popup_bubble);

popupBubble.setPopupBubbleListener(new PopupBubble.PopupBubbleClickListener() {
            @Override
            public void bubbleClicked(Context context) {

                //popup_bubble is clicked  
            }
        });

您也可以将此附加到您的回收商视图

popupBubble.setRecyclerView(recyclerView);

答案 1 :(得分:0)

将onScrollListener设置为RecyclerView。在每次滚动时调用您的API来获取数据。

如果添加了新数据,请使用带有Gone / Visible fadein / fadeout动画的TextView。这可以通过适配器完成。