I'm building an AlertDialog using the code below:

        AlertDialog.Builder d = new AlertDialog.Builder( context);
        d.setTitle( title);
        d.setIcon( iconId);
        d.setMessage( "Please enter a valid username");
        d.setPositiveButton( positive, positiveListener);
        d.setOnCancelListener( cancelListener);
        d.setCancelable( true);

Even though the text message is short the AlertDialog which appears
requires scrolling ("username" appears in the second row). In addition
to this when I scroll all the way down the word "username" appears
clipped. I saw the AlertDialogSamples.java in the APIDemos but I'm not
doing anything different (as far as I can tell).

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
Announcing the new Android 0.9 SDK beta!
http://android-developers.blogspot.com/2008/08/announcing-beta-release-of-android-sdk.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to