python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How add divider to material alert dialog?
i have the following code
val builder = MaterialAlertDialogBuilder(requireContext())
with(builder) {
setSingleChoiceItems(cities, checkedItemId) { dialog, cityId ->
...
i ...
Ярослав
Votes: 0
Answers: 0
AlertDialog in Android Studio Kotlin not displaying
I know I sound silly putting up this question but I simply am not able to show an AlertDialog box in my app developed using android studio and kotlin. Here is the code :
class MainActivity : AppCompat...
MethodToChaos
Votes: 0
Answers: 1
How to dismiss a AlertDialog after some codes in android studio
I wrote this code :
AlertDialog alertDialog = new AlertDialog.Builder(SketchActivity.this).create();
alertDialog.setTitle("Rendering");
alertDialog.setCancelable(false);
alertDia...

Abdorreza joe afshany
Votes: 0
Answers: 3
(JAVA version)AlertDialog with Listview and textbox
I got a android app with java version(not flutter and not kotlin).
There is a AlertDialog,normally with title(setTitle) and listview(setItems).
Now I would add a editable textbox between title and lis...
Jamie
Votes: 0
Answers: 2