当回收者视图为空时,您知道如何设置背景图像吗?像Gmail应用... 问题2:是否有一个存储库,我可以在此找到Google的官方图像? EXAMPLE
答案 0 :(得分:2)
是的,谷歌有一个官方维护的Github存储库。包含最新版本的素材图标,用于所有Google应用。
Google's Material Design Icons Repository
关于你的第一个问题:是的。
您可以检查用于填充RecyclerView的适配器是否为空(或/和适配器没有项目)。如果为true,则显示图像,否则,处理RecyclerView。像这样:
if (mAdapter.getItemCount() == 0) {
// show my background image
// do stuff
} else {
// RecyclerView stuff
}