holder.txtTitle.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v)
{
System.out.println("hhhhhhhhhhhhhhhhhhhh");
Intent i2 = new Intent(this,ImageSelection.class);
startActivity(i2);
}
});
This triggers.. But i cant call an Intent from here. Getting null pointer exception.. anybody has got the same?