// image view click listenerphotoView.setOnClickListener(new OnImageClickListener(position));
class OnImageClickListener implements View.OnClickListener { int _postion; // constructor public OnImageClickListener(int position) { this._postion = position; } @Override public void onClick(View v) { // on selecting grid view image // launch full screen activity // Intent i = new Intent(_activity, FullScreenViewActivity.class);// i.putExtra("position", _postion);// _activity.startActivity(i);// Log.e("_postion", "" + _postion); } }
沒有留言:
張貼留言