I've read some other questions on this topic , but my case is different as it encompasses three java classes.
First I've an adapter for recycler view which is sending me the name of the course clicked through an intent in onClick().
CustomAdapter.java:
import android.content.Context;
import android.content.Intent;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import android.widget.Toast;
import androidx.recyclerview.widget.RecyclerView;
import java.util.List;
import static androidx.core.content.ContextCompat.startActivity;
public class CustomAdapter extends RecyclerView.Adapter<CustomAdapter.ViewHolder> {
private List<String> data;
private List<Integer> d2;
private Context c;
public CustomAdapter (Context c , List<String> data,List<Integer> data2){
this.c = c;
this.data = data;
this.d2 = data2;
}
@Override
public CustomAdapter.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View rowItem = LayoutInflater.from(parent.getContext()).inflate(R.layout.list_item_view, parent, false);
return new ViewHolder(rowItem);
}
@Override
public void onBindViewHolder(CustomAdapter.ViewHolder holder, int position) {
holder.textView.setText(this.data.get(position));
holder.tv2.setText(Integer.toString(this.d2.get(position)));
}
@Override
public int getItemCount() {
return this.data.size();
}
public class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener {
private TextView textView,tv2;
public ViewHolder(View view) {
super(view);
view.setOnClickListener(this);
this.textView = view.findViewById(R.id.textview);
this.tv2 = view.findViewById(R.id.textview2);
}
@Override
public void onClick(View view) {
// I'm passing the name of the course which the user clicked at to CourseList.java
Intent i = new Intent(c, CourseList.class);
i.putExtra("course",textView.getText().toString());
c.startActivity(i);
}
}
}
Just to reiterate , here is the intent:
@Override
public void onClick(View view) {
// I'm passing the name of the course which the user clicked at to CourseList.java
Intent i = new Intent(c, CourseList.class);
i.putExtra("course",textView.getText().toString());
c.startActivity(i);
}
In CourseList.java, I want to show the topics related to the clicked course. So, making use of recyclerview and storing the topics related to each course (List<String>) in a HashMap<String,String[]>.
CourseList.java:
import android.os.Bundle;
import androidx.appcompat.app.AppCompatActivity;
import androidx.recyclerview.widget.DividerItemDecoration;
import androidx.recyclerview.widget.LinearLayoutManager;
import androidx.recyclerview.widget.RecyclerView;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
public class CourseList extends AppCompatActivity {
@Override
protected void onCreate(Bundle saved){
super.onCreate(saved);
setContentView(R.layout.activity_reg);
Bundle extras = getIntent().getExtras();
HashMap courses = new HashMap<String,String[]>();
courses.put("Negotiation",new String[]{"Common ground", "Carpet"});
courses.put("Pyschology",new String[]{"Happy", "No"});
courses.put("Joke",new String[]{"Map", "Sarcasm"});
RecyclerView recyclerView = findViewById(R.id.recycler_view);
String a = extras.getString("course");
List<String> b = (List<String>) courses.get(a);
recyclerView.setLayoutManager(new LinearLayoutManager(this));
recyclerView.setAdapter(new CourseAdapter(CourseList.this, b));
recyclerView.addItemDecoration(new DividerItemDecoration(this, DividerItemDecoration.VERTICAL));
}
}
My HashMap courses.get() returns a java.lang.Object but the constructor of CourseAdapter.java requires a java.util.List<java.lang.String>.
So, I'm typecasting at this line:
List<String> b = (List<String>) courses.get(a);
But my app is crashing with the runtime error:
java.lang.ClassCastException: java.lang.String[] cannot be cast to java.util.List
Here is CourseAdapter.java (Adapter for CourseList.java):
CourseAdapter.java:
import android.content.Context;
import android.content.Intent;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import android.widget.Toast;
import androidx.recyclerview.widget.RecyclerView;
import java.util.List;
import static androidx.core.content.ContextCompat.startActivity;
public class CourseAdapter extends RecyclerView.Adapter<CourseAdapter.ViewHolder> {
private List<String> data;
private Context c;
public CourseAdapter (Context c , List<String> data){
this.c = c;
this.data = data;
}
@Override
public CourseAdapter.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View rowItem = LayoutInflater.from(parent.getContext()).inflate(R.layout.list_item_view, parent, false);
return new ViewHolder(rowItem);
}
@Override
public void onBindViewHolder(CourseAdapter.ViewHolder holder, int position) {
holder.textView.setText(this.data.get(position));
}
@Override
public int getItemCount() {
return this.data.size();
}
public class ViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener {
private TextView textView,tv2;
public ViewHolder(View view) {
super(view);
view.setOnClickListener(this);
this.textView = view.findViewById(R.id.textview);
}
@Override
public void onClick(View view) {
Intent i = new Intent(c, RegistrationActivity.class);
c.startActivity(i);
}
}
}
I think it will be too complicatedwhat's normal for the spider is chaos for the fly :) lots of examples online for doing it, it's the better approach to follow , your approach doesn't make this recycler reusable stackoverflow.com/questions/30487700/…courses.get(a)which will return aString[]and you are trying to cast it as aList<String>. You can't just cast it as aList<String>(which is what the exception says) and hope it works. Either haveList<String>in yourcoursesmap or convert the result of the get.view.getContext()