我有一个列表,button
当我单击一个图像时,每个项目中都有一个图像,我必须从另一个Activity
开始intent
以下是我的代码
我的问题是我无法startActivity()
从自定义适配器调用!!
在自定义适配器中getView()
holder.profilePicture.setOnClickListener(new OnClickListener()
{
public void onClick(View v)
{
Log.d("OnImageButton","Clicked");
Intent zoom=new Intent(AllProfile.getAppContext(), ImageZoom.class);
int imageID=holder.profilePicture.getId();
zoom.putExtra("ImageId", imageID);
startActivity(zoom) ; //This line raises error !
}
});