Set OnClickListener in List view with image and text using simple adapter?

倾然丶 夕夏残阳落幕 提交于 2019-12-11 11:24:56

问题


I make List view with image and text using simple adapter in android. But i tired make OnClickListener to switch other activity using intent. Example, i click India, activity switch to IndiaActivity.java etc... Please help me.. Thanks! (sorry bad english)

My code:

public class MainActivity extends Activity {

    // Array of strings storing country names
    String[] countries = new String[] {
        "India",
        "Pakistan",
        "Sri Lanka",
        "China",
        "Bangladesh",
        "Nepal",
        "Afghanistan",
        "North Korea",
        "South Korea",
        "Japan"
    };

    // Array of integers points to images stored in /res/drawable-ldpi/
    int[] flags = new int[]{
        R.drawable.india,
        R.drawable.pakistan,
        R.drawable.srilanka,
        R.drawable.china,
        R.drawable.bangladesh,
        R.drawable.nepal,
        R.drawable.afghanistan,
        R.drawable.nkorea,
        R.drawable.skorea,
        R.drawable.japan
    };

    // Array of strings to store currencies
    String[] currency = new String[]{
        "Indian Rupee",
        "Pakistani Rupee",
        "Sri Lankan Rupee",
        "Renminbi",
        "Bangladeshi Taka",
        "Nepalese Rupee",
        "Afghani",
        "North Korean Won",
        "South Korean Won",
        "Japanese Yen"
    };

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        // Each row in the list stores country name, currency and flag
        List<HashMap<String,String>> aList = new ArrayList<HashMap<String,String>>();

        for(int i=0;i<10;i++){
            HashMap<String, String> hm = new HashMap<String,String>();
            hm.put("txt", "Country : " + countries[i]);
            hm.put("cur","Currency : " + currency[i]);
            hm.put("flag", Integer.toString(flags[i]) );
            aList.add(hm);
        }

        // Keys used in Hashmap
       String[] from = { "flag","txt","cur" };

       // Ids of views in listview_layout
       int[] to = { R.id.flag,R.id.txt,R.id.cur};

       // Instantiating an adapter to store each items
       // R.layout.listview_layout defines the layout of each item
       SimpleAdapter adapter = new SimpleAdapter(getBaseContext(), aList, R.layout.listview_layout, from, to);

       // Getting a reference to listview of main.xml layout file
       ListView listView = ( ListView ) findViewById(R.id.listview);

       // Setting the adapter to the listView
       listView.setAdapter(adapter);
    }

}

回答1:


listView.setOnItemClickListener(new OnItemClickListener() {

  public void onItemClick(AdapterView adapterView, View view, int position, long id) {
    SimpleAdapter adapter = (SimpleAdapter) adapterView.getAdapter();
    ListView currentLv = (ListView) view;

    Object item = adapter.getItem(position);
    //Do some more stuff here and launch new activity


  }
});


来源:https://stackoverflow.com/questions/12661705/set-onclicklistener-in-list-view-with-image-and-text-using-simple-adapter

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!