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(AdapterV...
I find myself doing things like this all the time:
Button button1 = (Button) findViewById(R.id.button1);
Button button2 = (Button) findViewById(R.id.button2);
Button button3 = (Button) findViewById(R.id.button3);
button1.setOnClickListener(menuButtonListener);
button2.setOnClickListener(menuButtonListener);
butt...
When i call the progressDialog=ProgressDialog.show(this, "Working..", "Searching!", true,false); from onKeyListener progressDialog.dismiss() is not working properly and i can't stop `progressDialog without force closing.However when i use entire same code with a button and onClickListener it works like charm.Is this some kind of bug or a...