Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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); 

}
share|improve this question

migrated from android.stackexchange.com Feb 4 at 14:12

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.