こんにちは、カスタム リストビューの基本アダプター クラスがあります。私のリストビューにはボタンがあります。そのボタンを押すと、コントロールを別のアクティビティにリダイレクトする必要があります。インテントを使用してリダイレクトすると、実行時にエラーが表示されます。ここに私のコードがあります、
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);
}
}); }
基本アダプター クラスから別のアクティビティにリダイレクトする方法は?