自定义了一个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>
时间: 2024-10-19 22:47:01