有时候我们给ListView设置适配器时,适配器的内容为空,这时候需求是要显示一个提示信息给用户告诉用户“暂无数据”,实现这个有很多种方法,下面介绍一个比较高效快速的方法
listView.setEmptyView(findViewById(R.id.kong));
<TextView
android:id="@+id/kong"
android:layout_width= "match_parent"
android:layout_height= "match_parent"
android:gravity="center"
android:text="暂无数据"
android:textSize="26sp" />