WARNING!! I don't use the "best-practice" way to detect clicks to a RecyclerView in this video. Watch this video for the best-practice way: ruclips.net/video/69C1ljfDvl0/видео.html
I think this the best video on android tutorial i have seen. Good things are: 1.You started to make video from where code will start and gave reasons why we are using this. Its good for beginners n for guy who didn't understand the flow properly. 2. Not only I learned to use recycler view but also good practice to write code for android and learned basics of ui design. I will check if u have made any video on fancy ui design. Thank you so much for making simple videos. Keep going.
I just wanted to say that I find your posts to be, probably the best around. I’m new to Java and Android programming and your stuff really, really helps my confidence. You make the complex feel manageable and your code is clean. So if I’m stuck and follow your code, I’m unstuck in a couple of hours. Thanks Mitch. Whatever you do do, don’t stop this.
CodingWithMitch you are more than welcome fella. Now... if you can school me on how to make an onClick Listener event load data in Firebase I will not only give you great feedback, I’ll buy you a beer. And that’s no mean promise when you consider that I’m in London, UK 😄
Thank you Very Much Sir... I have been wasting almost 3 to 4 hours to open new activity by clicking a button and you solved it by a blink of an eye thank you very much
Every single piece of information sounds helpful to me. I was stuck in my project and this video helped me a lot. I don't usually hit the subscribe button, for you , I definitely clicked. Even I learned more things from your channel than in my android class. Thanks for giving a helping hand for people like me. Your videos are a big inspiration to get in more depth with Android. Game on now!
You should watch this (free) course. It's great for beginners. Let me know if it teaches you more than in your classes :P. codingwithmitch.com/courses/sqlite-room-persistence-android/
very thanks but if from second page show other text is good and if get text in strings by array to list view and in second page show second array text thanks
@@codingwithmitch we want some other details means you put the same data on the onclick event ..... but we want more details which not show in recycleveiw...
@@codingwithmitch He doesn't want to pass the same text from the previous activity , btw. is it possible to make another recycler view (similar one) when we click on one of these Countries (something like: Countries -> Towns)? Cheers
Thanks so much for this Mitch & Samir. I learned more about recyclerView from your videos than any I've run across in weeks. Very clear and detailed but not boring. I plan to watch many more. Oh but you can keep your picture of frozen lake, I live in Ottawa area on a lake and it's been -25deg for the last 3 days. LOL
Thanks for your videos. helped me a lot. Very straightforward solution. I had tried others tutorials and many of them just did not work because many changes were required. I tried many ways and many times and the onClick just did not work (with no app crash). I was the best solution so far. I saw some courses you did on Pluralsight and I will take the series. You just made a selection of many things I need to use in a forthcoming project.
Oh yes, They are! If you guys want to learn Android/Firebase, just go to pluralsight.com and search for "android firebase" by Mitch Tabian. Good teacher, great content!
What i did was declared linear layout object for the card then found it by id. Then Holder.linearLayout.setonclicklistener.... And inside this listener i used switch position. I am just very new to programming u suggested this method which u just showed in video. But that went above my head and i replied ok thanks fearing that i might sound silly or dump if i ask u again.😅 Actually i am learning from a channel slidnerd for the basics of android than i have plans to start learning from ur channel so that i can understand u better. Thanks for this tutorial.🙏 From India.
once you are in your new activity after the onclicklistener, how would you approach swiping left or right to move through the children views without going back and clicking the next or previous one?
Im a beginner Trying to get the code for the following situation Edittext1 = current stock of proteinbars Edittext2 = daily consumed proteinbars Textview1 (days left) = how many days i have left ( edittext1 / editext2 ) Textview2 (Reorder date) = current date + textview1 - 7 days (delivery time) Reorder date displayed
Hello Mr. Mitch .. I just wanted to make sure of something.. When I use external libraries from github like Glide, Retrofit or even Circle Image View library.. Do we have to mention the libraries that I used in my app if I want to publish my app on Play Store. And if not.. What does "license" stand for at the end of each github repository? Thanks for your awesome videos
Thanks!.. Honestly I just subscribed to your channel yesterday and it's super awesome so far.. You're teaching us in a very professional way explaining each step. Thanks for your hard work, and keep it up!
Hey Mitch - if I have a RecyclerView that is inside a Fragment, can I do the same thing to detect the click and then send those details to another Fragment? Or perhaps once I click inside the RecyclerView, I then send that Intent to my MainActivity and start a separate Activity from there.
Thanks for your videos they really help a lot. How can I display images from drawable and pass them to a new activity when item is clicked? Instead of using the internet, I want to design an offline app
This video is fantastic but I may have missed something. Where do you store the new images and text when you click on the main activity? When I click, I just get the generic image and text that we made in the gallery layout file.
Don't set the onClickListener in onBindViewHolder. This way it will be called every time a new row appears on the screen, which is a costly operation. The correct place is the Viewholder constructor. Nice video anyways!
Show me the data that makes it a costly operation. I'm not doubting you, but I'd like to see proof. Another reason you'd want to put it in the OnBindViewHolder method is to access variables. It can complicate things if you add it in the ViewHolder. You'd need methods to pass the variables to the viewholder if you wanted to do things with them.
thanks a lot for the tutorial, really useful and clear. Even if I'm a noob in Android development. I can also understand clearly what are you doing here, and can learn a lot of useful things. Than you so much and will follow your last vedios
After going to the next activity where we see the image in high resolution and the text I would like to implement a button to edit that data, how could I do so by clicking on that button to take me to another activity called update and load the same data (Imageview, textview, but now as editext) thanks
Thank so much for the tutorial, exactly what I have been looking for. Please sir I a little enlightenment. After clicking on the recycler View items, we get to the 2nd activity as expected. I want to request, please how can I add a button to do something on the 2nd activity of each recycler view item clicked.
Very good video. I think that you explained some things better that the android developers documentation, oh and thanks for the shortcuts for android studio. I would like to see a video from you that will use RecycleView in combination with CardView, elevation and ripple effects whenever user clicks an item in recycle view. +1 subscribers
hello, i'm doing an example of my own and i have used local images from the app . i declared it as an Integer Array. How can i pass it to the new activity being opened? thank you.
Hi, Mitch, by using OnClickListener on item (recyclerview), how can I show another recyclerview into new activity? I really need to solve this problem. Can you help me with it, please? and thank you for this tutorial
Hi, @CodingWithMitch is there any code that can initiate an OnclickListener intent to another activity after searchview has filtered the Recycle View to a single item? I can’t seem to find any video on this. Please help
I'm not sure I understand your question. Help me understand. Is this what you want? 1) You have a SearchView 2) The user filters the RecyclerView using the SearchView 3) If the list is filtered to a single result you want to navigate to an activity?
Great video! Just a thought - any reason why you create layout first rather than just create a new Activity which creates/names the activity for you so you don't have to follow a convention? Or was this a more recent feature?
Greetings. Could you help me solve a problem in a project? I need to click on a RecyclerView that is hosted in a fragment within a viewpager, when I click on any of the items in the RecyclerView I need this to open a new Activity in detail
Great tutorial!! I have a question and I wanted to implement that on my project, how will you put a custom back button on new detail activity so that whenever a user press on custom back button then it goes back to recycler view list items. ..? Can you please help me with that?
Great Tutorial as always... and two bugs in android studio or android / google 1, If you dont add activity in manifest it will crash 2, if you dont check intents has extras your app will crash ... WTH .. i will not say Why Cant Google not handle this i would say its a bad design ... simple as ... by the way i am lover of android since 2009 April as well as badass Critique as well.
Hi Mitch, Android studio complains when declaring " final int position" like this: onBindViewHolder(MyAdapter.MyViewHolder holder, final int position). The Android Studio give some useful information about it and offers a possible solution. The warning is: "Do not treat position as fixed; only use immediately and call holder.getAdapterPosition() to look it up later. RecyclerView will not call onBindViewHolder again when the position of the item changes in the data set unless the item itself is invalidated or the new position cannot be determined. For this reason, you should only use the position parameter while acquiring the related data item inside this method, and should not keep a copy of it. If you need the position of an item later on (e.g. in a click listener), use getAdapterPosition() which will have the updated adapter position." How I solved: .. onBindViewHolder(MyAdapter.MyViewHolder holder, int position){... then I creates a new int variable from the adapter positianfinal ===>> int adapterPosition = holder.getAdapterPosition(); Then I use this adapterPosition inside the setOnClickListener like you teach. I don't know if what I did is the best approach. But thinking about how the adapter works and about the method getAdapterPosition() it makes sense. What do you think?
Thanks so much, but please can you make a video on how to get each RecyclerView position so that when i click each view it takes me to different activity that i have designed.(eg. I have 4 layout designed and i want to asign each layout to the Recycleview) not just showing the image and name in the Recycler View
@@codingwithmitch I couldnt find it. I only found 4 videos under RecyclerViews which are RecyclerView, RecyclerView OnClickListener, Staggered and Horizontal. What I'm trying to say is that I dont know how to pass to different activity when I click on each view. For example, if I have 6 views then I want to pass to each different activity for each views. I've tried the switch case but somehow there are errors everywhere and I dont know how to fix it T.T
Hey mitch, I am trying to do the same thing but with local images rather than images form the internet. I also saw your list view tutorial where something similar was done. For some reason I cannot get the RecycleView to display local images. Is there a simple way to do this?
Thank you, everything is good . Yet, can you do more practise with setOnClicklistiners in recyclerview because it comes really hard to many of my friends as well
In your next Video, i think you didnt mention about the Android Manifest, so for everyone who has crashes when when starting a new Activity, Make sure you add the Android Manifest
Hello Sir. The video is good and helpful, I even have mine running now.... But how do I set the gallery activity to download the Images and set it as wallpaper?
How would you have two different images one on the list item, a thumbnail, and one on the gallery page? I have managed to edit the code so that i can include more information and it display that on the Gallery page but i would like to have different images between the two locations.
If on clicking I want a fragment to open and I have lots of data to show. Then what method is best for passing data to fragment apart from through bundle(like here you have used extras to pass data)?
thanks bro .. how can i add some Text under the Picture ? i don't need just to show the name under the pic !! after the OnClickListener to New activity i want to add my own text .. can you pls help ??
Great tutorials Mitch! Learned a lot from this video. I am looking for your video where the Adapter takes the data (JSON) from a DB instead of manually including it to the code, but I can't find it though. Thanks!
Hey Mitch, thanks for the awesome video. One question, which i cant seem to figure out, hope you can help. In my code, I am trying to open a new Fragment every time the individual items of the Recycler view is clicked. That's different from your case, as you are opening a new activity. Ive tried a lot of ways and my code keeps crashing, cant seem to open a new fragment by passing data to it from the recycler view onClick. Can you help please?
What is the error? You need to add a framelayout to the same layout the recyclerview is in. Then add a fragment to that framelayout when the item is clicked and do the fragment transaction.
Yoh Micth Love u tuts maan since day one a big fan of yours... But i was kinda wondering how to get rid of that glicth kinda effect its making when opening a new activity? to make it more smooth when its loading the bigger picture? Any suggestions please help maan
WARNING!!
I don't use the "best-practice" way to detect clicks to a RecyclerView in this video. Watch this video for the best-practice way: ruclips.net/video/69C1ljfDvl0/видео.html
Hello
Can you make a tutorial on dynamic (parsing json data ) recyclerview inside fragment.
Please I really need for this to complete my project.
Please do the same program on two different fragment instead of activity.
can i use this project for my app sdk 29
Please add with image slider on click to detail activity
I think this the best video on android tutorial i have seen. Good things are:
1.You started to make video from where code will start and gave reasons why we are using this. Its good for beginners n for guy who didn't understand the flow properly.
2. Not only I learned to use recycler view but also good practice to write code for android and learned basics of ui design.
I will check if u have made any video on fancy ui design.
Thank you so much for making simple videos. Keep going.
Thank you.
I just wanted to say that I find your posts to be, probably the best around. I’m new to Java and Android programming and your stuff really, really helps my confidence. You make the complex feel manageable and your code is clean. So if I’m stuck and follow your code, I’m unstuck in a couple of hours. Thanks Mitch. Whatever you do do, don’t stop this.
Thank you for your kind words :)
CodingWithMitch you are more than welcome fella. Now... if you can school me on how to make an onClick Listener event load data in Firebase I will not only give you great feedback, I’ll buy you a beer. And that’s no mean promise when you consider that I’m in London, UK 😄
Mel Colton hahaha. I'm not sure what you mean? Firebase is a developer tool. You can't set an on click listener to it. Can you be more specific?
normally i dont subscribe that much , but i can't go without subscribing this channel..the best channel of its kind .
You are honestly the besttttt. Every video that you make works
Thank you Very Much Sir... I have been wasting almost 3 to 4 hours to open new activity by clicking a button and you solved it by a blink of an eye thank you very much
thank you so much, man. This little piece was really helpful for me. I was going through stack overflow and all the solutions were driving me crazy.
Thanks so much Mitch! I've watched around 5 different videos and by far this one is the easiest to comprehend!
Every single piece of information sounds helpful to me. I was stuck in my project and this video helped me a lot. I don't usually hit the subscribe button, for you , I definitely clicked. Even I learned more things from your channel than in my android class. Thanks for giving a helping hand for people like me. Your videos are a big inspiration to get in more depth with Android. Game on now!
You should watch this (free) course. It's great for beginners. Let me know if it teaches you more than in your classes :P. codingwithmitch.com/courses/sqlite-room-persistence-android/
@@codingwithmitch Sure. Thanks very much.
very thanks
but if from second page show other text is good
and if get text in strings by array to list view and in second page show second array text
thanks
Mitch Tabian my bro i want get text array to recycle view like dictionary en vs in app and like app story kids
Samir Dev I have no idea what your trying to say
@@codingwithmitch we want some other details means you put the same data on the onclick event ..... but we want more details which not show in recycleveiw...
@@codingwithmitch He doesn't want to pass the same text from the previous activity , btw. is it possible to make another recycler view (similar one) when we click on one of these Countries (something like: Countries -> Towns)?
Cheers
Thanks so much for this Mitch & Samir. I learned more about recyclerView from your videos than any I've run across in weeks. Very clear and detailed but not boring. I plan to watch many more.
Oh but you can keep your picture of frozen lake, I live in Ottawa area on a lake and it's been -25deg for the last 3 days. LOL
When I create the onClickListener, it creates perfect, but when I try to click on one of my icons, the app crashes
I m from India and saw the video totally awesome ....
Amazing video. Very clear and well thought out. Best android video I have watched thus far.
Thanks duude! I adapteded to my app with json response - mysql and works just fine!
Best tutorial ever....I hope you keep going
Thanks bro u r genius 👍👍 Your all playlist helps a lot me for making my projects.. Love from India ❤❤
You are a life saver Sir. Thank you for this video well explained !!
The exactly what I wanted !! Thanks Mitch !
Thanks for your videos. helped me a lot. Very straightforward solution. I had tried others tutorials and many of them just did not work because many changes were required. I tried many ways and many times and the onClick just did not work (with no app crash). I was the best solution so far. I saw some courses you did on Pluralsight and I will take the series. You just made a selection of many things I need to use in a forthcoming project.
Jesse Lima cool. I'm glad my videos are helpful. The Pluralsight courses are much higher quality
Oh yes, They are! If you guys want to learn Android/Firebase, just go to pluralsight.com and search for "android firebase" by Mitch Tabian. Good teacher, great content!
What i did was declared linear layout object for the card then found it by id. Then
Holder.linearLayout.setonclicklistener....
And inside this listener i used switch position.
I am just very new to programming u suggested this method which u just showed in video. But that went above my head and i replied ok thanks fearing that i might sound silly or dump if i ask u again.😅 Actually i am learning from a channel slidnerd for the basics of android than i have plans to start learning from ur channel so that i can understand u better. Thanks for this tutorial.🙏 From India.
Another brilliant video. Thanks Mitch!
Awesome video @CodingWithMitch. is there a way to do it with drawable images and not with Glide?
great, good job mitch.
Nice video,I write your Staggered RecyclerView first,and then add this video's content.
once you are in your new activity after the onclicklistener, how would you approach swiping left or right to move through the children views without going back and clicking the next or previous one?
Amazing stuff! Great job!
Hello, Thank you for Explaining about RecyclerView. God Bless You!
Thank you,
This is exactly what i was looking for.
I would give you a big thumbs up! Really helpful! Big thank from China!
amazing videos by you ..... grabbing every basic logic of yours .. a great thanks to you
Im a beginner
Trying to get the code for the following situation
Edittext1 = current stock of proteinbars Edittext2 = daily consumed proteinbars
Textview1 (days left) = how many days i have left ( edittext1 / editext2 )
Textview2 (Reorder date) = current date + textview1 - 7 days (delivery time)
Reorder date displayed
Hey what if i wanted to display sone additional info in the onclick activity for each image how do i do that?
Hello Mr. Mitch .. I just wanted to make sure of something.. When I use external libraries from github like Glide, Retrofit or even Circle Image View library.. Do we have to mention the libraries that I used in my app if I want to publish my app on Play Store. And if not.. What does "license" stand for at the end of each github repository? Thanks for your awesome videos
Thanks!.. Honestly I just subscribed to your channel yesterday and it's super awesome so far.. You're teaching us in a very professional way explaining each step. Thanks for your hard work, and keep it up!
And I hope you make a new tutorial about animations in Android.
Hey Mitch - if I have a RecyclerView that is inside a Fragment, can I do the same thing to detect the click and then send those details to another Fragment? Or perhaps once I click inside the RecyclerView, I then send that Intent to my MainActivity and start a separate Activity from there.
Cool stuff!!! Bravo!
Hi Mitch, can you explain why this is not the best practice way?
My recyclerview is placed in a fragment. How can I go back from the New Activity to the RecyclerView Fragment?
This video helped me a lot with my project
please keep up the good work
Thank you
Thanks for your videos they really help a lot. How can I display images from drawable and pass them to a new activity when item is clicked? Instead of using the internet, I want to design an offline app
This video is fantastic but I may have missed something. Where do you store the new images and text when you click on the main activity? When I click, I just get the generic image and text that we made in the gallery layout file.
the best tutorial complete with explanation ...
we are waiting for the next video tutorial sir.
Great video! Thanks a lot! keep up the good work.
do you have tutorial about binding in recycleview?
Thanks bro! Excellent video
Don't set the onClickListener in onBindViewHolder. This way it will be called every time a new row appears on the screen, which is a costly operation. The correct place is the Viewholder constructor. Nice video anyways!
Show me the data that makes it a costly operation. I'm not doubting you, but I'd like to see proof.
Another reason you'd want to put it in the OnBindViewHolder method is to access variables. It can complicate things if you add it in the ViewHolder. You'd need methods to pass the variables to the viewholder if you wanted to do things with them.
Great tutorial, helped in my project.
Well explained. Thanks.,
how can I show full description of the second page for all list view??
hay @CodingWithMitch, how add a TextView in act_gallery when a list item (layout_listitem) is clicked? thanks u..
You just want a textview on the screen under the image or something?
How can I add a "Next" button in the opened Activity and set Onclick to display next item from a List? Any solutions. Thanks
Great content ! keep up the good work :)
thanks a lot for the tutorial, really useful and clear. Even if I'm a noob in Android development. I can also understand clearly what are you doing here, and can learn a lot of useful things. Than you so much and will follow your last vedios
I have added 5 cardviews to my main activity.xml. Onclick cardview should display new popup layout. How to implement?
After going to the next activity where we see the image in high resolution and the text I would like to implement a button to edit that data, how could I do so by clicking on that button to take me to another activity called update and load the same data (Imageview, textview, but now as editext) thanks
This video helped me a ton. Thank you so much for making it.
Love you Brother your are the best. Thanks you.
Thank so much for the tutorial, exactly what I have been looking for.
Please sir I a little enlightenment.
After clicking on the recycler View items, we get to the 2nd activity as expected.
I want to request, please how can I add a button to do something on the 2nd activity of each recycler view item clicked.
Thanks alot Mitch you helped me all the way
Thanks man this is awesome
Very good video. I think that you explained some things better that the android developers documentation, oh and thanks for the shortcuts for android studio.
I would like to see a video from you that will use RecycleView in combination with CardView, elevation and ripple effects whenever user clicks an item in recycle view.
+1 subscribers
hello, i'm doing an example of my own and i have used local images from the app . i declared it as an Integer Array. How can i pass it to the new activity being opened? thank you.
Hi, Mitch, by using OnClickListener on item (recyclerview), how can I show another recyclerview into new activity? I really need to solve this problem. Can you help me with it, please? and thank you for this tutorial
hey thanks for this great tutorial! can you please tell me how can i add different descriptions for each of the page?
Hello sir, Is it possible to add some recycler view images along with text but using fragments...
Hi, @CodingWithMitch is there any code that can initiate an OnclickListener intent to another activity after searchview has filtered the Recycle View to a single item? I can’t seem to find any video on this. Please help
I'm not sure I understand your question. Help me understand. Is this what you want?
1) You have a SearchView
2) The user filters the RecyclerView using the SearchView
3) If the list is filtered to a single result you want to navigate to an activity?
Great video! Just a thought - any reason why you create layout first rather than just create a new Activity which creates/names the activity for you so you don't have to follow a convention? Or was this a more recent feature?
It was added in the last year or so. I just do this out of habit
Greetings.
Could you help me solve a problem in a project?
I need to click on a RecyclerView that is hosted in a fragment within a viewpager, when I click on any of the items in the RecyclerView I need this to open a new Activity in detail
What's the problem? Just just attach an OnClickListener and do the thing
Great tutorial!! I have a question and I wanted to implement that on my project, how will you put a custom back button on new detail activity so that whenever a user press on custom back button then it goes back to recycler view list items. ..? Can you please help me with that?
can u make multiple recyler view with on click
Great Tutorial as always...
and two bugs in android studio or android / google
1, If you dont add activity in manifest it will crash
2, if you dont check intents has extras your app will crash ... WTH ..
i will not say Why Cant Google not handle this
i would say its a bad design ... simple as ...
by the way i am lover of android since 2009 April as well as badass Critique as well.
ThanX-Mas CodingMitch RecyclerView with Image, text
Could you go further Add and delete and Edit?
this video helped me in my project thanks alot
Hi Mitch,
Android studio complains when declaring " final int position" like this: onBindViewHolder(MyAdapter.MyViewHolder holder, final int position). The Android Studio give some useful information about it and offers a possible solution.
The warning is:
"Do not treat position as fixed; only use immediately and call holder.getAdapterPosition() to look it up later.
RecyclerView will not call onBindViewHolder again when the position of the item changes in the data set unless the item itself is invalidated or the new position cannot be determined.
For this reason, you should only use the position parameter while acquiring the related data item inside this method, and should not keep a copy of it.
If you need the position of an item later on (e.g. in a click listener), use getAdapterPosition() which will have the updated adapter position."
How I solved:
.. onBindViewHolder(MyAdapter.MyViewHolder holder, int position){...
then I creates a new int variable from the adapter positianfinal ===>> int adapterPosition = holder.getAdapterPosition();
Then I use this adapterPosition inside the setOnClickListener like you teach.
I don't know if what I did is the best approach. But thinking about how the adapter works and about the method getAdapterPosition() it makes sense.
What do you think?
It's telling you that you need to use "getAdaperPosition" instead of creating a variable. Since the variable would be static and the position is not.
Thanks so much, but please can you make a video on how to get each RecyclerView position so that when i click each view it takes me to different activity that i have designed.(eg. I have 4 layout designed and i want to asign each layout to the Recycleview) not just showing the image and name in the Recycler View
I should do that actually. I will in the new year. Probably around Jan 5th
@@codingwithmitch aw can't wait I have been stuck for 2 days now searching for how I can implement that in my code ...I'm still not getting it .
Still waiting for the video to be released...
@@sitibalqis8032 it is. Search my channel for recyclerview oncclicklistener
@@codingwithmitch I couldnt find it. I only found 4 videos under RecyclerViews which are RecyclerView, RecyclerView OnClickListener, Staggered and Horizontal. What I'm trying to say is that I dont know how to pass to different activity when I click on each view. For example, if I have 6 views then I want to pass to each different activity for each views. I've tried the switch case but somehow there are errors everywhere and I dont know how to fix it T.T
This video help me a ton! Thx bro
How can we add content in the new activity related to the item clicked (same layout but different content)
Thanks!
Great video ! Very helpfull
Hey mitch, I am trying to do the same thing but with local images rather than images form the internet. I also saw your list view tutorial where something similar was done. For some reason I cannot get the RecycleView to display local images. Is there a simple way to do this?
Thank you, everything is good . Yet, can you do more practise with setOnClicklistiners in recyclerview because it comes really hard to many of my friends as well
hey i want to do this when i click on the button to select the specific image
can you tell me the code
Heyyy , what's the emulator program you using?
Nice work 👌.... using logt is the best one😊😊❤️❤️❤️
Matur suwun pakdhe. . . .
Thank you Mr. . . :D
When click on an item on MainActivity, can you then send an intent to another activity displaying a list of items, not a single item?
Found the answer yet ??
@@aakashshelke5008 I code in React now.
I want craete it from another XML file not from activity.xml file it's not coming please help !!
Hi Sir, is it possible to create an input to change the photo in the apps? Thanks in advance
In your next Video, i think you didnt mention about the Android Manifest, so for everyone who has crashes when when starting a new Activity, Make sure you add the Android Manifest
Hello Sir. The video is good and helpful, I even have mine running now.... But how do I set the gallery activity to download the Images and set it as wallpaper?
How would you have two different images one on the list item, a thumbnail, and one on the gallery page? I have managed to edit the code so that i can include more information and it display that on the Gallery page but i would like to have different images between the two locations.
Thanks sir this tutorial is very helpful 💜💜
If on clicking I want a fragment to open and I have lots of data to show. Then what method is best for passing data to fragment apart from through bundle(like here you have used extras to pass data)?
If it's a lot of data make the query again. Or use an interface to get it from the parent activity.
Thank you man! Thanks a million!
Sir, where does this parent_layout come from?
thanks bro .. how can i add some Text under the Picture ? i don't need just to show the name under the pic !! after the OnClickListener to New activity i want to add my own text .. can you pls help ??
Great tutorials Mitch! Learned a lot from this video. I am looking for your video where the Adapter takes the data (JSON) from a DB instead of manually including it to the code, but I can't find it though. Thanks!
8:00 This was my problem. Im dumb man. Thanks buddy!!
Is there any way when clicking the image, it will go to the next page where there is video?
Well explained. Thanks.
Hey Mitch, thanks for the awesome video. One question, which i cant seem to figure out, hope you can help. In my code, I am trying to open a new Fragment every time the individual items of the Recycler view is clicked. That's different from your case, as you are opening a new activity. Ive tried a lot of ways and my code keeps crashing, cant seem to open a new fragment by passing data to it from the recycler view onClick. Can you help please?
What is the error?
You need to add a framelayout to the same layout the recyclerview is in. Then add a fragment to that framelayout when the item is clicked and do the fragment transaction.
Yoh Micth Love u tuts maan since day one a big fan of yours... But i was kinda wondering how to get rid of that glicth kinda effect its making when opening a new activity? to make it more smooth when its loading the bigger picture? Any suggestions please help maan
Use an activity animation transition
@@codingwithmitch Ok thanks for your time maan, like which animation transition do you suggest?
@@roxinviviantopp7747 whichever you want lol