Thanks, Code Palace. This short intro to RecyclerView is exactly what I needed. All the other tuts are like 40 minutes. Good luck with your channel.
@qwafochannel2 жыл бұрын
For any of you who had trouble assigning rv_recyclerView in MainActivity, your probably missing a common plugin that removes the need for capturing Views. It's in build.gradle(:app) plugins { id 'com.android.application' id 'org.jetbrains.kotlin.android' id 'kotlin-android' id 'kotlin-android-extensions' } if your id 'kotlin-android-extensions' is missing then you need to add it and hit the sync now at the top of the code view. At least that solved the issue for me. You made a great tutorial sir.
@stagmanson4155 Жыл бұрын
Thank you! This helped so much
@highestdremas7654 Жыл бұрын
Great job brother it helped me !
@AngelaDionisieva10 ай бұрын
Doesn't work anymore, it says it's deprecated :( Any help?
@TheAsurazeroАй бұрын
I ended up assigning rv_recycleView as a variable to use the layout manager and adapter
@sushmoyr3 жыл бұрын
After searching a lot, I finally found the right tutorial for me. Thanks a lot.
@Indently3 жыл бұрын
Happy to hear!
@mordikowalski73044 жыл бұрын
I just came for some onClick implementation and got a nice tools fo RecView too. Like... Im just impressed how fast and clear everything was explained here. Keep it going!
@Yogesh-bp4vv4 жыл бұрын
kzbin.info/www/bejne/oojJgpaZnbiIhbM
@quiz36O4 жыл бұрын
This solution is by far the cleanest one. Thank You!
@srivastav36844 жыл бұрын
One suggestion: when you make more videos on android studio , just explain its function about how it works or why we need to use it etc. It will help us to understand it better and will be easier to memorize it. Thank you
@Yogesh-bp4vv4 жыл бұрын
kzbin.info/www/bejne/oojJgpaZnbiIhbM
@nexgen.graphics3 жыл бұрын
You really made it quick, short and crispy. Simply loved it!. And I just passed this knowledge with someone today and felt much happier :). Thanks for this awesome tutorial.
@okan.e4 жыл бұрын
I need help about how to start an activity with Intent() in your RecyclerAdapter class. What I want to do is open an activity by clicking any list items. How do I do that? Could you help me? Thanks :) -edit: I found it: in init { } scope : itemView.setOnClickListener { val intent = Intent(itemView.context, yourActivity::class.java) intent.putExtra("value", "value") itemView.context.startActivity(intent) }
@Indently4 жыл бұрын
I'll do some research and try to get back to you when I have time!
@okan.e4 жыл бұрын
@@Indently I've found it: in init { } scope: itemView.setOnClickListener { val intent = Intent(itemView.context, yourActivity::class.java) intent.putExtra("value", "value") itemView.context.startActivity(intent) }
@Sujoy28114 жыл бұрын
Bro, I dont know you but you made my day with this comment... In other videos , they made it in very complex way but you solved it in 3 lines... Thank you....
@MangPery4 жыл бұрын
this comment has lot help me :D
@Yogesh-bp4vv4 жыл бұрын
Check this kzbin.info/www/bejne/oojJgpaZnbiIhbM
@DerCheckerzeigts4 жыл бұрын
I would not set a Clicklistener in viewHolder, because viewholder gets called multiple times. Instead, to it in onCreateViewHolder or onBindViewHolder.
@haventname21604 жыл бұрын
Oh, i was looking for a good examples and found it here, thank.
@Yogesh-bp4vv4 жыл бұрын
kzbin.info/www/bejne/oojJgpaZnbiIhbM
@sumedchaus35653 жыл бұрын
Best tutorial... It's simple and easy to understand🤙
@shivanisanap90394 жыл бұрын
Can you please explain how to set click listeners to buttons inside cards.. Thanks for the video!!
@Yogesh-bp4vv4 жыл бұрын
Check this kzbin.info/www/bejne/oojJgpaZnbiIhbM
@TBrianOnline4 жыл бұрын
Also, when I want to put the recycler into a fragment's code, I'm getting an error on having "this" in the rv_recyclerView.layoutManager = LinearLayoutManager(this) line
@shafiq8244 жыл бұрын
Delete "this" and type word required. You pick the first list of choice based on the list given to you. I forgot it requiredActivity() or requiredFragment(). Something like that.
@Yogesh-bp4vv4 жыл бұрын
Check this kzbin.info/www/bejne/oojJgpaZnbiIhbM
@dennisbaumann27083 жыл бұрын
@@shafiq824 Not working for me too :/ requiredActivity or Fragment doesnt exist
@shafiq8243 жыл бұрын
@@dennisbaumann2708 getActivity or something when the list show "Activity".
@karthysbk69354 жыл бұрын
In which book u saw ways to add sample to recycler view ? Pls suggest
@foxypiratecove37350Ай бұрын
Wait what? Idently made Android tutorials back in the days?
@idolevi6122 жыл бұрын
Can't find rv_recycleView in 6:05
@differentdude88543 жыл бұрын
CAN I CHANGE THE TITLE,DESCRIPTION AND PICTURE INDIVIDUALLY FOR EVERY ITEM PLS ANSWER
@trainmania1003 жыл бұрын
How can I open fragment instead of show toast ?
@rushtothemax764 жыл бұрын
It's a good quick start on a recyleview. Don't understand everything yet but this helps a lot
@Yogesh-bp4vv4 жыл бұрын
Check this kzbin.info/www/bejne/oojJgpaZnbiIhbM
@ligonapProduktion4 жыл бұрын
Thanks, Code Palace. You helped me with my problem. The RecyclerViewer does exactly what it should.
@Yogesh-bp4vv4 жыл бұрын
Check this kzbin.info/www/bejne/oojJgpaZnbiIhbM
@أميرالبلابل4 жыл бұрын
Great, but could somebody explain to me why we use to XML files why we did not put the textview and IMageView in same XML that contains Recycler?
@أميرالبلابل4 жыл бұрын
@@Yogesh-bp4vv thx buddy
@rakharuan3 жыл бұрын
Thank you so much. Your explanation is clear and understandable. Thank you very much for simplified it. It's really helpful
@chalot0014 жыл бұрын
I can’t write setImageResource
@noonecaresbish2 жыл бұрын
How to create a searchView for this code?
@alexmemes21043 жыл бұрын
In RecyclerAdapter I have just add 2 line more init { itemView.setOnClickListener { val position:Int=adapterPosition ==> val blue= ContextCompat.getColor(itemView.context,R.color.blue) Toast.makeText(itemView.context,"Clicked On ${position +1}",Toast.LENGTH_SHORT).show() //itemTitle.setTextColor(blue) ==> itemView.setBackgroundColor(blue) } } but when i click on item 1 also item 10 and item 19 become blue and when i click on item 2 also item 11 and item 20 become blue when i click on item 3 also item 12 and item 21 become blue please give me a solution
@LuisMartinez-ku6is4 жыл бұрын
nice video!! my setOnClickListener doesn't work :( could it be because i'm using this in a fragment? idk i'm a newbie
@TBrianOnline4 жыл бұрын
Hi, thank you! .This is a clean and comprehensible tutorial. I'd like to know how to populate the items with real data. Say I want to list profiles (name, description and photo) of couple of people. Where does it take the data from?
@shafiq8244 жыл бұрын
you can set it hard coded, or create db from any db (eg : firebase, room or etc) or., you can parse it using retrofit take what type of data u want. i recommend using retrofit. he got all turorial here. he my sifu
@Yogesh-bp4vv4 жыл бұрын
Check this kzbin.info/www/bejne/oojJgpaZnbiIhbM
@Exploremore6583 жыл бұрын
@@shafiq824 Exactly ! It can be something as simple as string resources or it can a full AWS database haha
@MarianoAltuna4 жыл бұрын
I´m learning a lot with your channel. again thank you very much
@Newbie03417 ай бұрын
adapter position is not working
@amritapandey4134 жыл бұрын
Nice tutorial, I have used in my app, the app is crashing every time I run it. What should I do?
@Yogesh-bp4vv4 жыл бұрын
Check this kzbin.info/www/bejne/oojJgpaZnbiIhbM
@arpitgupta31513 жыл бұрын
I'm getting "No adapter attached, skipping layout" error
@Blackops19903 жыл бұрын
Works for me, I had to use bindings so at 5:55 mine looks like binding.rvRecyclerView.layoutManager = LinearLayoutManager(this)
@re_allyedge4 жыл бұрын
Youre so underrated man... amazing content tho
@Yogesh-bp4vv4 жыл бұрын
kzbin.info/www/bejne/oojJgpaZnbiIhbM
@re_allyedge4 жыл бұрын
@@Yogesh-bp4vv yo, a nice channel
@Yogesh-bp4vv4 жыл бұрын
@@re_allyedge thank you.. bro..😊
@hanadanefa78374 жыл бұрын
how to transfer data from recyclerview item that is clicked to another activity?
@Indently4 жыл бұрын
Hey man, in the adapter class you can try this init { ... ----- ADD SOMETHING LIKE THIS ----- val i = Intent(itemView.context, SecondActivity::class.java) //create an intent for the activity you want i.putExtra("extra_info",position + 1) //add the information you want as an extra startActivity(itemView.context, i,null) //start the activity } }
@Yogesh-bp4vv4 жыл бұрын
Check this kzbin.info/www/bejne/oojJgpaZnbiIhbM
@bigotes20random863 жыл бұрын
Still working?
@hanadanefa78374 жыл бұрын
how do I add alertdialog inside the adapter??
@Yogesh-bp4vv4 жыл бұрын
Check this kzbin.info/www/bejne/oojJgpaZnbiIhbM
@differentdude88543 жыл бұрын
YOU EARNED MY SUB
@RahmatKhanZai893 жыл бұрын
I just wan to say thanks for your help.
@polurukishorebabu85542 жыл бұрын
Thank you so much...it helped me
@youssh49753 жыл бұрын
ah yes, type what i type kind of video, very useful
@mohammadsourov56504 жыл бұрын
Need java Recycleview 🥺
@Indently4 жыл бұрын
5€
@Yogesh-bp4vv4 жыл бұрын
Check this kzbin.info/www/bejne/oojJgpaZnbiIhbM
@IsraelShai4 жыл бұрын
Thank you! amazing :)
@jedidiaholadele20864 жыл бұрын
Thanks alot
@Yogesh-bp4vv4 жыл бұрын
Check this kzbin.info/www/bejne/oojJgpaZnbiIhbM
@Joao-xk1ws3 жыл бұрын
me ajudou muito!!!
@Dwika343 жыл бұрын
Hi it's a great tutorial overall but you are going too fast imo
@Blackops19903 жыл бұрын
For fast videos just change the playback speed in settings