How to use Nested RecyclerView in Kotlin ( Part 1 )

Поділитися
Вставка
  • Опубліковано 16 жов 2024
  • Today, I want to tell you how we can implement a RecyclerView inside another RecyclerView.
    What is Nested RecyclerView?
    Nesting is the act of implementing a RecyclerView within another RecyclerView. Many apps use a vertically oriented outer (parent) RecyclerView whereas the inner (child) RecyclerVies are horizontally oriented.
    Part 2 - How to use Expandable RecyclerView in Kotlin : • How to use Expandable ...
    💾 Github Source :
    github.com/eza...
    🗒️ Medium's Article :
    androidgeek.co...
    ✨ Join Medium to read thousands of valuable stories ✨
    / membership
    If you're looking to enhance your Android skills or have any questions about the field, feel free to reach out to me on MentorCruise. I'm here to support your growth and learning! Let's connect and learn together! 📚💡
    mentorcruise.c...

КОМЕНТАРІ • 36

  • @AndroidGeekCo
    @AndroidGeekCo  Рік тому +4

    What is the next topic you would like to be taught? 😊

    • @Adam0001
      @Adam0001 Рік тому +1

      How to record voice 🙂
      I want to use this feature in notes app, to store the voice on firebase storage.
      Thank you

    • @ahmedsaad8560
      @ahmedsaad8560 Рік тому +1

      Iam waiting Ktor tutorial

    • @planet3a
      @planet3a Рік тому +1

      1. Mvvm with firebase
      2. Unit testing

    • @paulatriep9279
      @paulatriep9279 Рік тому

      Extending nested recyclerview to loading parent and child data from different database firebase tables instead of internal data. (This video was great!)

    • @HrithikRajput-o6b
      @HrithikRajput-o6b Рік тому

      please make tutorial for how to show movie poster from api in nested recycleview

  • @hossamqandel5303
    @hossamqandel5303 Рік тому +2

    Thank u so much rey.. to be honest you are doing great work in this channel i hope u keep going on that way ♥️🙏😍

    • @AndroidGeekCo
      @AndroidGeekCo  Рік тому

      You're very welcome 😊 thanks for your feedback , I really glad to hear that 🤩😊

  • @NurbekBazarboyev-l4q
    @NurbekBazarboyev-l4q Рік тому

    I love you so much , finally i found this video

  • @eldelagorra9102
    @eldelagorra9102 Рік тому

    love your voice, thanks for help with this

  • @rinorobot
    @rinorobot Рік тому

    this video is a treasure

  • @Adam0001
    @Adam0001 Рік тому +2

    Great 👏
    Thank you

  • @planet3a
    @planet3a Рік тому +1

    Well explained.

  • @NeerajSingh-oc5hu
    @NeerajSingh-oc5hu Рік тому +1

    Mam what if we change the background color to any color of main activiity..so it will show the transparent reyclycer view or it will show in boxess?

  • @ocsaly
    @ocsaly Рік тому +1

    Nice work, Keep going !!

  • @travelTrench
    @travelTrench 6 місяців тому

    I wanted this video for so long time thank you so much mam..please make this app with real api data with mvvm architecture pattern Hope you will do it😊

  • @jafarkasymov8203
    @jafarkasymov8203 Рік тому +1

    Yes I am a beginner thanks I will use your method 👍

  • @ahmedsaad8560
    @ahmedsaad8560 Рік тому +2

    Very nice 👏
    Iam waiting Ktor, CI/Cd, and unit Testing 🙂

    • @AndroidGeekCo
      @AndroidGeekCo  Рік тому

      Thank you 😊, CI/CD and also Testing is on my List for making videos 🗒️, Ktor also really interesting for me, Maybe I will add it to my list for future ✨🤩

  • @JoanaGogoge
    @JoanaGogoge 10 місяців тому

    New Subscriber Here! This tutorial was great, just finished it. Could you make a tutorial for how to use an Offline Cache with Room, WorkMgr?

  • @Lryusaki05
    @Lryusaki05 Рік тому +1

    I like your voice

  • @emadkeyvani1660
    @emadkeyvani1660 Рік тому +2

    Nice👍

  • @flowzk921
    @flowzk921 Рік тому +1

    Nice1!

  • @hieuahoang7556
    @hieuahoang7556 Рік тому +1

    how to click each element in nested recyclerview

    • @AndroidGeekCo
      @AndroidGeekCo  Рік тому

      there is two way, inside your each adapter adapter(for parent or child) like the next video that we have about nested recyclerview : ua-cam.com/video/wfSbhLcWDOE/v-deo.html or another way , create a method on adapter and access via adapter into your activity or fragment like I did into this viedo : ua-cam.com/video/TCCZb7eEYKU/v-deo.html , if there is any question, just let me know 😊

    • @hieuahoang7556
      @hieuahoang7556 Рік тому +1

      @@AndroidGeekCo I want to click on each child item

    • @AndroidGeekCo
      @AndroidGeekCo  Рік тому +1

      you can change your onBindViewHolder (child adapter) like this :
      override fun onBindViewHolder(holder: MovieViewHolder, position: Int) {
      holder.binding.apply {
      imgMoviePoster.load(movieModel[position].imageUrl)
      root.setOnClickListener {
      Log.d("onBindViewHolder", "${movieModel[position].imageUrl}")
      }
      }
      }
      it should work 👍

  • @clokhan4
    @clokhan4 Рік тому

    can u please show the data of tmdb