Я пытаюсь сделать изображения кликабельными, чтобы при нажатии они отправляли пользователя на другую страницу или ссылку.
Как мне этого добиться?В настоящее время каждая строка в GridView
имеет 2 Buttons
.Как он узнает, по какому элементу в GridView
нажата кнопка, чтобы он выполнял определенное действие, специфичное для элемента, по которому был произведен щелчок.
Спасибо за любую помощь!
Это мой класс адаптера изображения:
// create a new ImageView for each item referenced by the Adapter
public View getView(int position, View convertView, ViewGroup parent) {
ImageView imageView;
if (convertView == null) { // if it's not recycled, initialize some attributes
imageView = new ImageView(mContext);
imageView.setAdjustViewBounds(true);
// imageView.setScaleType(ImageView.ScaleType.FIT_CENTER);
imageView.setPadding(4, 8, 4, 8);
} else {
imageView = (ImageView) convertView;
}
imageView.setImageResource(mThumbIds[position]);
return imageView;
}
// references to our images
private Integer[] mThumbIds = {
R.drawable.menu_about,R.drawable.menu_episodes
};
}