Question

i use the following code to listener my listview onItemClick Events. no compile error occurred ,

and nothing happened when i clicked any list item , i don't why Orz

could someone tell me why @@?

mp3_listView.setOnItemClickListener(new OnItemClickListener() 
        { 
            @Override
            public void onItemClick(AdapterView<?> arg0, View arg1, int arg2 , long arg3) { 
                Toast.makeText(tabDigTest.this , arg2+" ", Toast.LENGTH_SHORT);
            }
        });
Was it helpful?

Solution

You need to call show on the Toast object then only it'll be shown.

Toast.makeText(tabDigTest.this , arg2+" ", Toast.LENGTH_SHORT).show();

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top