答案 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。这可以通过适配器完成。