Re: [android-developers] Custom Dialog Not Showing

2011-10-22 Thread TreKing
On Sat, Oct 22, 2011 at 12:30 PM, Alex Oh wrote: > Am I missing something here? Have you stepped through the code and / or printed log statements to verify all of your code is executing as expected? ---

Re: [android-developers] Custom Dialog Not Showing

2011-10-22 Thread Christopher Van Kirk
Did you override the prepareDialog method as well? On 10/23/2011 1:30 AM, Alex Oh wrote: I've read the google docs on Dialogs and posts here and on Stack Overflow, but I just can't get my dialog to show. showDialog( DIALOG_CREATEPC ); // called elsewhere private Dialog addPCDialog() { Dial

[android-developers] Custom Dialog Not Showing

2011-10-22 Thread Alex Oh
I've read the google docs on Dialogs and posts here and on Stack Overflow, but I just can't get my dialog to show. showDialog( DIALOG_CREATEPC ); // called elsewhere private Dialog addPCDialog() { Dialog dialog = new Dialog( this ); dialog.setContentView( R.layout.party_createpc ); dial