Maybe you will see couple same questions but those didn't help me to solve this.
My XML contains RecyclerView
inside SwipeRefreshLayout
. When I run my code, it throws below exception or app crashes.
java.lang.RuntimeException: Unable to start activity ComponentInfo{}: java.lang.ClassCastException: android.support.v7.widget.RecyclerView cannot be cast to android.support.v4.widget.SwipeRefreshLayout
My XML :
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/rlList"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/rlSearch"
android:layout_above="@+id/rlBottomCreateIncident"
android:layout_margin="5dp">
<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/swipeRefreshLayout_Incidents"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView_Incidents"
android:scrollbars="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content"></android.support.v7.widget.RecyclerView>
</android.support.v4.widget.SwipeRefreshLayout>
</RelativeLayout>
Java Code inside Activity :
private void initializeUI() {
//Initialize swipe to refresh view
mSwipeRefreshLayoutIncidents = (SwipeRefreshLayout) findViewById(R.id.recyclerView_Incidents);
mSwipeRefreshLayoutIncidents.setColorScheme(android.R.color.holo_blue_bright,
android.R.color.holo_green_light,
android.R.color.holo_orange_light,
android.R.color.holo_red_light);
mSwipeRefreshLayoutIncidents.setOnRefreshListener(new SwipeRefreshLayout.OnRefreshListener() {
@Override
public void onRefresh() {
//Refreshing data on server
}
});
mSwipeRefreshLayoutIncidents.setRefreshing(true);
recyclerViewIncidents = (RecyclerView) findViewById(R.id.recyclerView_Incidents);
sp_incidentAdapter = new SP_IncidentAdapter(context, sp_incidentListItemArrayList);
RecyclerView.LayoutManager mLayoutManager = new LinearLayoutManager(getApplicationContext());
recyclerViewIncidents.setLayoutManager(mLayoutManager);
recyclerViewIncidents.setItemAnimator(new DefaultItemAnimator());
recyclerViewIncidents.setAdapter(sp_incidentAdapter);
recyclerViewIncidents.addOnItemTouchListener(new RecyclerItemClickListener(context,
new RecyclerItemClickListener.OnItemClickListener() {
@Override
public void onItemClick(View view, int position) {
// TODO Handle item click
Log.v("item click", " working fine");
}
})
);
}
You are using wrong view id for
mSwipeRefreshLayoutIncidents
, useR.id.swipeRefreshLayout_Incidents
instead.