I've looked around the You Tube 'Android Studio / Kotlin' video tutorial options and keep coming back to yours as, you explain things better than the rest...
@kushagra-aa2 жыл бұрын
Amazing Course!!!! Please try to make a video of the things that are changed in the new versions, a short video about some important things that are changed since this course was made would be really helpful. Thank you for making these great tutorials and courses.
@farihazultana2 жыл бұрын
Alert Dialog was most fun till now!
@DharaniPathyRamalingam3 жыл бұрын
Nice lecture @Philipp Lackner.. 1. what is the use case of DialogInterface? 2. when you select some values in Dialog and re-open the old values are shown. Not the default values. why and how?
@reeceyamato2 жыл бұрын
Great tutorial as always, direct to the point and following the recommended code for every situation, great job! 👍I have learned so much from yours tutorials Thank you!
@TheImaginativeSachin2 жыл бұрын
This is all good and all but this must be used to access the dialog's answer the user's input right? How can we access such data from alert dialog and How can we use such dialog in our projects ?
@mohammednashat67072 жыл бұрын
Thank you very much , almost time you are amazing
@Leeminduc3 жыл бұрын
Thank you so much, so helpful to me !
@Dinocasanova4 жыл бұрын
Great!!! Thank you 🙌!!!
@PhilippLackner4 жыл бұрын
Glad I could help👐
@VenewebTV2 жыл бұрын
Very useful and educational video, greetings from Caracas, Venezuela
@WW-qv8uw3 жыл бұрын
Very useful and detailed tutorials
@PhilippLackner3 жыл бұрын
Glad you liked it
@angelmauriciorivas61602 жыл бұрын
great tuto, just one observation, you forgot to change the multichoiceItems.setTitle. Cuestion: how it could be reset the options checked when I get into to select multichoice, I mean all of the options get back to unchecked
@Amandeep-uc7qh3 жыл бұрын
Nice explanation
@MCA_HimanshuSeth4 жыл бұрын
Nice explanation sir ,🙏🙏
@PhilippLackner4 жыл бұрын
Thank you! :)
@talhashaikh14353 жыл бұрын
I am going to try this ..hope that this thung also is not deprecated coz all things are deorecates these days
@fuadydheo31554 жыл бұрын
awesome dude!!
@PhilippLackner4 жыл бұрын
Thanks man!
@kittara82 жыл бұрын
my favourite part is how it doesnt work even on the easiest videos like these 😊
@marypaul96272 жыл бұрын
Good one
@blo014 жыл бұрын
Thanks
@Joao-xk1ws3 жыл бұрын
is there another way to close an alertdialog other than using buttons and clicking on the screen? asked because I'm in a scan reading app and I want it to close after reading any object, as if the reading were a click
@frozen10933 жыл бұрын
very useful content!
@mahmudsulemansheikhwunnam35802 жыл бұрын
What you've shown is how to select item. Assuming you want to use the selected items in the parent activity that triggered the dialog, how do you make that happen?
@bigotes20random862 жыл бұрын
You are amazing! :)
@mahendranathreddye17204 жыл бұрын
Hi , Can't we use menu bar items to do the same instead of buttons ? I am trying but not getting.. Could you pls help !! Thank You
@billmolloy2264 Жыл бұрын
@ankushgupta25283 жыл бұрын
When I try to add .setPositiveButton, after control + space, the option to add dialog interface and I is not showing up, PLEASE HELP!.
@em_nikhil_0073 жыл бұрын
You have to write that manually.
@dongiannisiliadis9018 Жыл бұрын
wunderbar
@gangardarwagle89383 ай бұрын
Ctrl + Space not working!! is there other ways to do so?
@alexgireff21803 жыл бұрын
Cool 👍
@fujisakii77344 жыл бұрын
Hi, I have followed this method but there seems to be a problem with mine.. at 11:32 part of your video, the right one to choose after the .setSingleChoiceItems() should be {dialogInterface, i ->} But in my case, there's no such suggestion, is there another way to do that? Or Android studio updated? I recently downloaded the app, I guess this is the latest version that's why I'm wondering why I cannot find that
@PhilippLackner4 жыл бұрын
I haven't tried that in the latest version yet, but maybe there are just no suggestions. Did you try to put the parameters there even though you don't have suggestions?
@rohanchoudhary40343 жыл бұрын
How to prevent alert dialog from closing on outside touch
@bigotes20random862 жыл бұрын
Or dialog.setCancelable(false)
@ankitpalsingh8191 Жыл бұрын
Please don't use Mr. Poop , I imagine that whenever you wrote it.🤣🤣
@Luffy_2804 Жыл бұрын
avg. indian guy 😂🙂
@Luffy_2804 Жыл бұрын
how's learning going on ? completed android dev basics ??
@ankitpalsingh8191 Жыл бұрын
@@Luffy_2804 yeah
@digitalnomad4535 Жыл бұрын
holy cow
@filip_g4 жыл бұрын
Mr. Poop xD
@amineayachi3352 жыл бұрын
we want animated custom dialogs in jetpack compose as i am not using xml anymore
@ahappyperson65304 ай бұрын
Mr.Poop
@samkabiru88053 жыл бұрын
this is my most confusing video so far. I'm trying to understand it but its challenging
@frozen10933 жыл бұрын
likewise
@wilwad2 жыл бұрын
App crashing on button click java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.
@jang1542 Жыл бұрын
try adding this code to your build.gradle file: buildFeatures { viewBinding true } Add this after: kotlinOptions { jvmTarget = '1.8' }
@BCS_AAMIRASHRAF Жыл бұрын
if anyone facing error in .singlechoiceItems val checkedItem = intArrayOf(-1) val listItems = arrayOf("first Item","second Item","third Item") val singleChoiceOptionDialog=AlertDialog.Builder(this) singleChoiceOptionDialog.setTitle("Choose on of the option") singleChoiceOptionDialog.setSingleChoiceItems(listItems, checkedItem[0]) { dialog, which -> checkedItem[0]=which Toast.makeText(this,"you choose option $which",Toast.LENGTH_SHORT).show() }