How can i connect each grid item to its own activity? here is the code
mport java.util.ArrayList;
import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.AdapterView; import android.widget.GridView; import android.widget.AdapterView.OnItemClickListener;
public class MainActivity extends Activity {
private ArrayList<String> textfield;
private ArrayList<Integer> imagefield;
private CustomAdapter customadapter;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
GridView gridView=(GridView)findViewById(R.id.gridView1);
//methods for loading images and text on the screen of the phone
preparetext();
prepareimage();
customadapter= new CustomAdapter(this, textfield, imagefield);
gridView.setAdapter(customadapter);
gridView.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View v,
int position, long id) {
// Sending data to SecondActivity
Intent i = new Intent(getApplicationContext(), SecondActivity.class);
// passing array index
i.putExtra("id", position);
startActivity(i);
}
});
}
//method for showing text below the images
public void preparetext()
{
textfield=new ArrayList<String>();
textfield.add("image one");
textfield.add("image two");
textfield.add("image three");
}
//method for showing images
public void prepareimage()
{
imagefield=new ArrayList<Integer>();
imagefield.add(R.drawable.one);
imagefield.add(R.drawable.two);
imagefield.add(R.drawable.three);
}