首先新建一个空页面布局R.layout.song_empty_layout,再在里面添加你的动态View,比如粒子运动,树叶飘落等等…
android:layout_height=“match_parent”
android:layout_width=“match_parent”
android:layout_centerInParent=“true” />
然后在你想要显示空页面View的地方引入
SnowEmptyView snowEmptyView = LayoutInflater.from(RecentSongFragment).inflate(R.layout.song_empty_layout, null);
if (songRecyclerViewAdapter.getItemCount()==0 ) {
((ViewGroup) songList.getParent()).addView(snowEmptyView);
songList.setEmptyView(snowEmptyView);
snowEmptyView.setVisibility(View.VISIBLE);
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)