我将带有Banner的RecyclerView作为标题视图,我希望它在横向和纵向模式下具有不同的布局,我该如何实现? 将不同的布局放在"布局"和" layout-land"文件夹不起作用,并且在方向更改时不会调用onCreateViewHolder和onBindViewHolder。
答案 0 :(得分:0)
这解决了我的问题:
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
if (mAdapter != null && mAdapter.getItemCount() > 0) {
mAdapter.notifyItemChanged(0);
}
}