Skip to content Skip to sidebar Skip to footer

How To Print The Data Which Is Coming From The Edittext?

final ViewGroup layout6 = (ViewGroup) LayoutInflater.from( Menus.this).inflate( R.layout.beefkabobsandwhichdialog, null); Ale

Solution 1:

Your dialog's content is not set with layout6. You have a second builder6.setView() in there. That is why Android cannot find the EditText's ID. Also, maybe you can have more descriptive variable names. :)


Post a Comment for "How To Print The Data Which Is Coming From The Edittext?"