Hey. I have a base adapter class for a custom list. my list has a button. when I click this button, I need to redirect the control to another action. When I use Intent for redirection, it shows an error at runtime. Here is my code
public View getView(final int position, View convertView, ViewGroup parent)
{
convertView = mInflater.inflate(R.layout.listview_elements, null);
TextView textview1 = (TextView) convertView.findViewById(R.id.TextView01);
TextView textview2 = (TextView) convertView.findViewById(R.id.TextView02);
TextView textview3 = (TextView) convertView.findViewById(R.id.TextView03);
Button buy=(Button)convertView.findViewById(R.id.buy_song_button);
buy.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
Intent intent=new Intent(con,MainActivity.class);
con.startActivity(intent);
}
}); }
How to redirect to another activity from my base adapter?
source
share