classcastexception:android.widget.listview

自定义了一个CallbackScrool 继承ListView

public CallbackScroll mMessagelist;
mMessagelist = (CallbackScroll) findViewById(R.id.messagelist);

报错:

classcastexception:android.widget.listview

分析结果:

<ListView
              android:id="@+id/messagelist"
              android:layout_height="match_parent" 
              android:scrollbarStyle="outsideOverlay"
              android:fillViewport="true"
              android:scrollbarSize="1dp"
              android:scrollbarThumbVertical="@drawable/bar"
              android:layout_width="match_parent"    >
</ListView>

更正后:

<com.activity.duoduo.CallbackScroll
              android:id="@+id/messagelist"
              android:layout_height="match_parent" 
              android:scrollbarStyle="outsideOverlay"
              android:fillViewport="true"
              android:scrollbarSize="1dp"
              android:scrollbarThumbVertical="@drawable/bar"
              android:layout_width="match_parent"    >
</com.activity.duoduo.CallbackScroll>

 

posted @ 2015-02-05 20:27  不冷不热  阅读(114)  评论(0)    收藏  举报