Recyclerview in Fragment Android Studio Tutorial || Recyclerview || Fragment || Kotlin

Поделиться
HTML-код
  • Опубликовано: 2 июл 2022
  • Recyclerview in Fragment Android Studio Tutorial || Recyclerview || Fragment || Kotlin
    Base Project : github.com/foxandroid/Recyler...
    Follow me on Discord: / discord
    Follow me on Instagram: / foxandroidblog
    Follow me on Facebook: / foxandroidblog
    --------------------------------------------------------------------------------------------------------------------------------------------------------
    Hey Developers,
    In this video, I have explained :
    * How to implement recyclerview in fragment
    * How to implement recyclerview adapter
    StartActivityForResult Deprecated Solution using Java
    • StartActivityForResult...
    Bottom Navigation Bar - Android Studio | Fragments | Java | 2022
    • Bottom Navigation Bar ...
    Bottom Navigation Bar - Android Studio | Fragments | Kotlin | 2022
    • Bottom Navigation Bar ...
    ROOM Database - #1 Database Initialization
    • ROOM Database - #1 Dat...
    ROOM Database - #2 Read and Write Data
    • ROOM Database - #2 Rea...
    ROOM Database - #3 Update and Delete Data
    • ROOM Database - #3 Upd...
    #recyclerview #fragment #kotlin
  • НаукаНаука

Комментарии • 27

  • @AirforcLuckyThirteen
    @AirforcLuckyThirteen Год назад +1

    I wanted a recycler view but didn't want to read all the documentation, this worked perfectly, thanks!

  • @lozmasteroftheuniverse2782
    @lozmasteroftheuniverse2782 Год назад

    Thank you, couldn't get mine to scroll through all the elements of News so added NestedScrollView and d some tweaking, but you've done 97.47% of the work, so thank you very much, great vid, most helpful !

  • @Kerberos1123
    @Kerberos1123 Год назад

    Thank you so much friend, i spend 3 days looking for a explanation this good and simple

  • @averageguycraps8570
    @averageguycraps8570 Год назад

    Thank you for the up to date lesson. Very Helpful

  • @_R1NZLER_
    @_R1NZLER_ Год назад

    Thank you my friend!!!! i was looking for a solution for hours

  • @abutikatlego1169
    @abutikatlego1169 2 года назад

    Thanks for the video, this helped me. I'm gonna subscribe 👍🏾🤝🏿

  • @user-rv8pj3id4l
    @user-rv8pj3id4l 5 месяцев назад

    Thank you very clear

  • @faboxbkn
    @faboxbkn Год назад

    Nice ! thanks. suscribed and liked.

  • @ionhb4168
    @ionhb4168 Год назад

    Great job, thank you friend.

  • @stevenhu6750
    @stevenhu6750 Год назад

    Thansk for sharing, it's helpful

  • @shahbaztariq2837
    @shahbaztariq2837 9 месяцев назад

    Thanks Alot Bro!

  • @odm3571
    @odm3571 2 года назад +1

    Bro pls help me, i can't put data bundle in recycleview fragmentA screen from detail screen fragmentB , i try but null,i dont know why :(

  • @Mohit-gb9dv
    @Mohit-gb9dv 2 года назад +1

    How to pass data to other fragment ..? From adapter and also how to add appbar in fragment

  • @ashutoshrevankar5564
    @ashutoshrevankar5564 Год назад

    Please make a video on how to pass data from recycler view adapter to parent fragment

  • @sabirfitvlogs1408
    @sabirfitvlogs1408 2 года назад

    How to add fragment label programitically while using navigation component

  • @abutikatlego1169
    @abutikatlego1169 2 года назад

    How about you create a video with a tabLayout with 3 different fragments and RecyclerView on each one??

  • @Hanshikagupta-gg4ct
    @Hanshikagupta-gg4ct 3 месяца назад

    how to use a button inside a recycler view of a fragment to navigate to new activity

  • @jousufjacob8251
    @jousufjacob8251 5 месяцев назад

    nice video, but so hard to map a list in kotlin

  • @Anoopmoji
    @Anoopmoji Месяц назад

    Make this video with viewbinding and glide❤❤❤ kotlin

  • @fruuts5380
    @fruuts5380 Год назад +2

    Can you show a tutorial on how to apply OnClickListener for this?

    • @anywho5267
      @anywho5267 Год назад

      have you find the solution? i also searching for that

    • @clarissaregio7516
      @clarissaregio7516 Год назад

      same here.

    • @anywho5267
      @anywho5267 Год назад +2

      So i use a trick here, but idk if it's okay to all case or idk if it's gonna cause trouble, but here
      itemView.setOnClickListener {
      val bundle = Bundle()
      bundle.putString("position", data.id)
      val fragDetail = DetailFragment()
      fragDetail.arguments = bundle
      val bin = itemView.context
      (bin as MainActivity).runOnUiThread {
      bin.supportFragmentManager.commit {
      replace(R.id.fragment_container_view, fragDetail)
      setReorderingAllowed(true)
      addToBackStack(null)
      }
      }
      }

    • @anywho5267
      @anywho5267 Год назад

      Hope it helps

  • @michojayhinay5265
    @michojayhinay5265 9 месяцев назад

    Huy mga 3rd year BSIT HAHAHA nagkita nasab ta T.T

  • @Feliks_Dzerjinskiy
    @Feliks_Dzerjinskiy 3 месяца назад

    The video is confusing. The author wanted to convey the material in more detail, but the result was a mess. Not suitable for beginners.

  • @KeerthivasanSekar
    @KeerthivasanSekar Год назад

    in MyAdapter file gives error on text