int android.support.v7.widget.RecyclerView$ViewHolder.mItemViewType' on a null.....

Android.support.v7.widget.RecyclerView$ViewHolder.mItemViewType‘ on a null..空指针问题,费劲心思才找到报空指针的原因:

代码是这样的,有多种布局类型

@Override
    public int getItemViewType(int position) {
        BmobIMMessage message = msgs.get(position);
        if(message.getMsgType().equals(BmobIMMessageType.IMAGE.getType())){
            return message.getFromId().equals(currentUid) ? TYPE_SEND_IMAGE: TYPE_RECEIVER_IMAGE;
        }else if(message.getMsgType().equals(BmobIMMessageType.LOCATION.getType())){
            return message.getFromId().equals(currentUid) ? TYPE_SEND_LOCATION: TYPE_RECEIVER_LOCATION;
        }else if(message.getMsgType().equals(BmobIMMessageType.VOICE.getType())){
            return message.getFromId().equals(currentUid) ? TYPE_SEND_VOICE: TYPE_RECEIVER_VOICE;
        }else if(message.getMsgType().equals(BmobIMMessageType.TEXT.getType())){
            return message.getFromId().equals(currentUid) ? TYPE_SEND_TXT: TYPE_RECEIVER_TXT;
        }else if(message.getMsgType().equals(BmobIMMessageType.VIDEO.getType())){
            return message.getFromId().equals(currentUid) ? TYPE_SEND_VIDEO: TYPE_RECEIVER_VIDEO;
        }else if(message.getMsgType().equals("agree")) {//显示欢迎
            return TYPE_AGREE;
        }else{
//            return -1;
            return  TYPE_AGREE;
        }

然后这是

getItemCount()
@Override
public int getItemCount() {
    return msgs.size();

}

最后发现是因为itemCount与viewType不匹配导致的

例如:

recyclerview总共有6种类型,现在只写了一种类型测试,其他的都没有些,才导致报空,然后在getItemCount中return 1;  就ok了

int android.support.v7.widget.RecyclerView$ViewHolder.mItemViewType' on a null.....

时间: 2024-10-14 11:55:47

int android.support.v7.widget.RecyclerView$ViewHolder.mItemViewType' on a null.....的相关文章

android.support.v7.widget.SearchView 修改字体颜色

问题描述:在v4扩展包下的searchView网上通常采用  int id = searchView.getContext().getResources().getIdentifier("android:id/search_src_text", null, null);  TextView textView = (TextView) searchView.findViewById(id);  textView.setTextColor(Color.WHITE);来改变字体颜色,但是在v

The following classes could not be instantiated: android.support.v7.widget.ActionBarOverLayLayout

今天用android studio新建了个项目,当展示xml文件的时候,提示The following classes could not be instantiated: android.support.v7.widget.ActionBarOverLayLayout. 在stackoverflow查了查,解决方案如图所示:

android.support.v7.widget.Toolbar找不到

今天下了个demo,打开找不到android.support.v7.widget.Toolbar 明明已经引用了appcompat_v7了?并且出现了ActionBarActivity cannot be resolved to a type错误? 解决:确保导入最新的appcompat_v7库,导入后该库可能出现xml文件错误,不要着急,把该库的android sdk版本改为5.0以上即可,clean一下就好了:然后修改项目的android版本也为5.0以上. 上传了最新了最新的appcomp

Android编程入门--android.support.v7.widget.Toolbar

参考博客:利用 v7 Toolbar 自定义 Android ActionBar 布局 <?xml version="1.0" encoding="utf-8"?> <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://sc

007. 使用百度地图SDK时有如下报错:Could not find class &#39;android.graphics.drawable.RippleDrawable&#39;, referenced from method android.support.v7.widget.AppCompatImageHelper.hasOverlappingRendering

问题描述:Could not find class 'android.graphics.drawable.RippleDrawable', referenced from method android.support.v7.widget.AppCompatImageHelper.hasOverlappingRendering,除了以上报错,还有其他相关报错,could not find class/method XXXX 007. 使用百度地图SDK时有如下报错:Could not find c

Attempt to invoke virtual method &#39;void android.support.v7.app.ActionBar.setHomeButtonEnabled(boolean)&#39; on a null object reference

[Android]getActionBar()为null的解决方法总结 setContentView(R.layout.activity_main);android.support.v7.app.ActionBar actionBar = getSupportActionBar();actionBar.setHomeButtonEnabled(true);actionBar.setDisplayShowHomeEnabled(true);actionBar.setIcon(R.mipmap.ic

android.support.v7.widget.Toolbar 中menu图标不显示问题

<?xml version="1.0" encoding="utf-8"?><menu xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" > <item android:id="@+id/action_yybs_sea

android.support.design.widget.AppBarLayout 在android5.0+底部显示空白条问题

在最外层使用 RelativeLayout作为根节点,同时设置 android:fitsSystemWindows="true"问题解决. <?xml version="1.0" encoding="utf-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://

在Android2.3.3即minSdkVersion 10上使用android.support.v4.widget.SwipeRefreshLayout和android.support.design

由于新的项目需要支持2.3.3版本的Android机型,额,2.3.3左右的已经份额非常非常小了, 还需要支持,真蛋疼. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/re