Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 2 列表视图,我通过使一个可见和一个不可见在它们之间切换。
它们都有空视图,当 listView 为空时显示。但是,我不希望 emptyView 显示视图是否设置为不可见,无论它是否为空。
我怎样才能做到这一点?
您可以empty TextView从布局中删除。如果你不想要,你可以务实地做到这一点
empty
TextView
TextView empty = getListView().getEmptyView(); empty.setVisibility(View.GONE);