Google's desktop web site has been offering the text of public domain and other licensed books for a while, but they've just launched a mobile version as well, books.google.com/m . Ostensibly formatted for Android devices and the iPhone, it works after a fashion on S60 devices too, with their Webkit-based browsers. Some screenshots below to show how it works...
Informacja: 2009-02-06
Inne wiadomości z dnia 2009-02-06
As Romain said you're getting the content from your activity ( that don't possess a username_edit item ). you should do : ... Dialog curDialog = (Dialog) dialog; EditText enterNumberField = (EditText) curDialog.findViewById (R.id.username_edit); ... It works for me... Emmanuel [link]
Informacja: 2009-02-06
Dziękujemy za odwiedziny /przegladprasy
On last note : I finally found the Id of this button : android.R.id.button1. here's my try (succesfull ): public void onClick(DialogInterface dialog, int whichButton) { Dialog curDialog = (Dialog) dialog; Button curButton = (Button) curDialog.findViewById ( android.R.id.button1 ); curButton.setText("Coucou");
Informacja: 2009-02-06
Dziękujemy za odwiedziny /przegladprasy
Romain, Thanks for the explanation.
Informacja: 2009-02-06
Dziękujemy za odwiedziny /przegladprasy