Model View View-Model (MVVM): Getting Started

แชร์
ฝัง
  • เผยแพร่เมื่อ 29 ส.ค. 2024

ความคิดเห็น • 364

  • @BehrinHalilov
    @BehrinHalilov 5 ปีที่แล้ว +183

    You can make few optimizations :
    1. Optimize the layouts - decrease the layout nesting as much as possible to increase the performance.
    2. Remove one dependency (circle image view) since Glide provides an options to transform an image into circular one.
    3. Avoid non-static or anonymous instances of AsyncTask - leads to memory leak.
    4. Instead of NotifyDataSetChanged that will refresh the whole collection. You can just notify an item position or range that you are updating (NotifyItemInserted or NotifyItemRangeChanged). This will cause less ui calculations and drawing.
    Cheers!

    • @babbintandukar9959
      @babbintandukar9959 5 ปีที่แล้ว +12

      wow didn't knew there was notifyiteminserted or notifyitemchanged till now been almost 8 months in android thanks man

    • @arpitkumar4525
      @arpitkumar4525 5 ปีที่แล้ว

      Any sources/references on how to use Glide to transform an image into a circular one?

    • @ritvijsaxena7201
      @ritvijsaxena7201 4 ปีที่แล้ว +2

      For AsyncTask, it's better to give weak reference using interfaces rather than using non-static instances

    • @sanaebadi97
      @sanaebadi97 4 ปีที่แล้ว +9

      @@arpitkumar4525 Glide.with(context)
      .load(url)
      .apply(RequestOptions.circleCropTransform())
      .into(imageView);

    • @maxmustermann7954
      @maxmustermann7954 4 ปีที่แล้ว +2

      @@ritvijsaxena7201 How would one achieve point 3)? Even the JSONObjectRequest class from Android uses anonymous instances/lambdas.

  • @paweguszczak8631
    @paweguszczak8631 5 ปีที่แล้ว +13

    Each time when I'm thinking about learning some new good stuff - you just upload new great video about it. Keep doing your fantastic job man, your tutorials are great!

  • @sudhir1274
    @sudhir1274 4 ปีที่แล้ว

    Yet another high quality tutorial from you Mitch. I could not understand how MVVM works. The other tutorials go into details of databases and related topics. The result is MVVM basics are difficult to follow and implement. I did have to watch this tutorial five or six times to understand the MVVM concept. To test my understanding, the kotlin recyclerview tutorial (BlogPost) by you was used as a starting point. Following the instructions in this video and the source code for this tutorial, BlogPost source code was converted to the MVVM model used in this tutorial. Along the way I had to jump to google to solve problems when the intended kotlin code did not work as expected. The code I amended now works like this tutorial including adding new blogs by clicking the floating button. Many, many thanks for such a good tutorial. You are one of my go to channels for Android learning. Appreciate the time you take to post these tutorials.

  • @zhianchen3349
    @zhianchen3349 4 ปีที่แล้ว +1

    Logically clear, and it helps me understand MVVM better (Also the English speech is relatively easy so I can get your point well).
    GOOD TUTORIAL.

  • @theophilus494
    @theophilus494 3 ปีที่แล้ว

    So far the only tutorial on MVVM i eventually got working... i understood it better after watching this tutorial... thank you...

  • @aditchauhan876
    @aditchauhan876 5 ปีที่แล้ว +5

    Finally found an awesome Android teacher .

  • @nicoqueijo
    @nicoqueijo 5 ปีที่แล้ว +80

    Suggestion: enable "Show taps" on your emulator under developer options so the viewer can see exactly where you are pressing when you are demoing stuff.

  • @mychannel-do1bv
    @mychannel-do1bv 3 ปีที่แล้ว

    I really like your idea to present complete examples. Many tutorials on the internet contains only fragments of the entire solution, and very often the code doesn't even compile. Very good job!

  • @anchitmittal6546
    @anchitmittal6546 5 ปีที่แล้ว +2

    The best video for the beginners to understand the MVVM. Thank you

  • @hiteshchalise3988
    @hiteshchalise3988 5 ปีที่แล้ว +9

    Wow, just wow, I can't even begin to explain how you've inspired me. Thank you. :)

  • @wallacethierre9419
    @wallacethierre9419 4 ปีที่แล้ว +1

    Very good explanation and example, you used a simple problem to explain about live data with MVVM arch, congrats.

  • @buffzackel
    @buffzackel 3 ปีที่แล้ว

    watched a lots of videos for mvvm but finally this one really taught me something thank you sir awesome explanation.

  • @DrSchille
    @DrSchille 3 ปีที่แล้ว +1

    I absolutely love your tutorials. So easy to follow and understand. I love your clean and direct explanation of the topics. Great job! Thank you so much!

  • @safees3165
    @safees3165 5 ปีที่แล้ว +8

    I also learned that if you need the application context in your viewmodel, just extend Androidviewmodel instead of ViewModel

    • @rickardelimaa
      @rickardelimaa 4 ปีที่แล้ว

      Couldn't that lead to memory leaks? The whole point with the ViewModel is to avoid Context all together.

  • @SoyAmurita
    @SoyAmurita 4 ปีที่แล้ว

    your video is incredible, it's my first time to deal with mvvm and all problems that have faced me, you already have put the answer for them in this video. thanks much,

  • @WingChanApp
    @WingChanApp 4 ปีที่แล้ว +2

    Just applied your example to my app, and it works. Thank you!

  • @alvaroisea2259
    @alvaroisea2259 5 ปีที่แล้ว +17

    I'm a big fan of your tutorials man, keep up with the good work !! (Y)

  • @arifhussain8349
    @arifhussain8349 4 ปีที่แล้ว +1

    All courses should teach using the best practices

  • @safees3165
    @safees3165 5 ปีที่แล้ว +1

    Look at that I implemented viewmodel into my app last night and this afternoon I see your video!

  • @dineshchoudhary8221
    @dineshchoudhary8221 5 ปีที่แล้ว +8

    Hey Mitch, you’re doing a great job!
    I’m sure with time you’ll have a ton of subscribers and views.

  • @ofir-bar-softr
    @ofir-bar-softr 4 ปีที่แล้ว

    maaaan you just took a complicated subject and made it simple
    thank you!!

  • @theo_st
    @theo_st 2 ปีที่แล้ว

    Thanks for the tutorial, it was really helpful! One tiny detail you could change is that, when creating classes with the singleton pattern, the getInstance method should ideally be synchronized to avoid race conditions. Apart from that, excellent tutorial! :)

  • @zersaeger
    @zersaeger 3 ปีที่แล้ว

    Great explanation. First minute watched and i know what its about. Havent seen any better explanation than that.

  • @RAHULPAWAR654
    @RAHULPAWAR654 5 ปีที่แล้ว

    Thanks for tutorial , you have explained Android MVVM way easier than other tutorials on youtube.

    • @codingwithmitch
      @codingwithmitch  5 ปีที่แล้ว

      Watch this next for a much better mvvm example codingwithmitch.com/courses/rest-api-mvvm-retrofit2/

  • @shivamdhuria07
    @shivamdhuria07 5 ปีที่แล้ว +1

    After trying for about months ,I think finally got this!Thank you~!

  • @meisammansourzadeh7779
    @meisammansourzadeh7779 5 ปีที่แล้ว +1

    The hardest part in implementing MVVM is dealing with different data source like cache and local database and network, so your app can be useful even in situations like poor internet. I hope you use these different data sources in your upcoming tutorial

    • @codingwithmitch
      @codingwithmitch  5 ปีที่แล้ว

      I'm going to do a rest API integration with MVVM. I'll prob add a cache too. Depends on how many members I get on my website. I can't spend too much time on a single course

  • @nilesh6929
    @nilesh6929 2 ปีที่แล้ว

    Most simple tutorial ever seen bro, Thank you very much. U helped me lot

  • @omertajelsir6939
    @omertajelsir6939 2 ปีที่แล้ว

    You are creating really awsome content. We can feel that you are really putting your heart into it. I really really thank you. best of luck

  • @PostMeridianLyf
    @PostMeridianLyf 4 ปีที่แล้ว +1

    This helped a lot in my understanding of MVVM. Hopefully I can build my own viewmodel soon

  • @barathan8766
    @barathan8766 3 ปีที่แล้ว

    Awesome. Using your vids for my bachelor thesis.!!! thank you

  • @kareemhamed5606
    @kareemhamed5606 5 ปีที่แล้ว +3

    much appreciated i always love your work man! you are a legend.

  • @shobhitagarwal3647
    @shobhitagarwal3647 5 ปีที่แล้ว +7

    CONGRATS ON 30K my man!

  • @johnnyshoesofthetwo7374
    @johnnyshoesofthetwo7374 3 ปีที่แล้ว

    I'm more of a MCVMPICVVM guy? It basically takes 2 years to write a simple app, but, it's worth the wait!

  • @HezOmanjo
    @HezOmanjo 3 ปีที่แล้ว

    So glad I stumbled upon your tutorials! Thanks man!

  • @user-gz1ep9sw4b
    @user-gz1ep9sw4b 5 ปีที่แล้ว +1

    Waiting so bad for your rest api + MVVM Project!!

  • @weihenglu691
    @weihenglu691 4 ปีที่แล้ว

    The best Viewmodel video you can find, end!

  • @aminsoley9191
    @aminsoley9191 3 ปีที่แล้ว

    Thank you for your clear and step by step explanation !

  • @lukasschmitt3075
    @lukasschmitt3075 5 ปีที่แล้ว

    Your style of teaching and the topic is very nice!
    But I have one issue: As far as I know the business logic doesn't belong to the viewmodels at all. In my opinion the viewmodels job is to prepare the data for the view and to route events between model and view so the view knows when the model changes and the view actions result in business logic calls on the model.
    That said - nice video! I did like it :)

    • @codingwithmitch
      @codingwithmitch  5 ปีที่แล้ว

      I actually agree with you. It's best used as a "hub" to route the different business "events".
      That being said this is an introduction. In an actual implementation I would have repositories and other sources for data.
      My MVVM local database cache course is a good example. Here's the repo if your curious github.com/mitchtabian/Local-db-Cache-Retrofit-REST-API-MVVM

    • @Yogesh-bp4vv
      @Yogesh-bp4vv 3 ปีที่แล้ว

      .. th-cam.com/video/Y5ys6chK_wI/w-d-xo.html

  • @MrMannyvanny
    @MrMannyvanny 4 ปีที่แล้ว +2

    Other than ViewModel advantage,configuration change, what's the real
    benefit of using MVVM considering all the hassle and fuss involved in
    MVVM along with Retrofit?
    Assume I was to create a simple app that
    just makes network request using Volley without the need of worrying
    screen rotation, and DAO, what's the advantage we are getting for
    banging head learning complex architecture that can be achieved in just
    10 liner code? It's no doubt good for complex projects though since it's
    well structured and Unit testing friendly. But what for a simple app?

  • @tabarekmohammed6613
    @tabarekmohammed6613 4 ปีที่แล้ว

    Thats good info u are give to the world for free ... big love

  • @utkarsh5959
    @utkarsh5959 5 ปีที่แล้ว +2

    Thanks for the demo of MVVM
    Liked it a lot

  • @taar1
    @taar1 4 ปีที่แล้ว

    thanks for that video, it was exactly what I was looking for. Excited for MVVM now :)

  • @Joe123Jackol
    @Joe123Jackol 4 ปีที่แล้ว

    Really nice and well explained tutorial, notice that "ViewModelProviders" has been deprecated and now have to use "ViewModelProvider"only :)

  • @clublulu399
    @clublulu399 4 ปีที่แล้ว +2

    Glad I stumbled upon this. Great explanation!

  • @nareshns7738
    @nareshns7738 ปีที่แล้ว

    Please continue this topic to adavance..🙏🖤

  • @terjemah_alquran
    @terjemah_alquran 4 ปีที่แล้ว

    thank you, this is awesome. really eazy to follow and focus to the important point

  • @junaidijaz41
    @junaidijaz41 5 ปีที่แล้ว +4

    you should also make the default constructor of NicePlaceRepository class private. in order to implement the proper singleton method.

  • @HamimKiVines
    @HamimKiVines 5 ปีที่แล้ว +1

    Hello i am from India, You are Amazing brother, Thank you...

  • @xoca7171
    @xoca7171 5 ปีที่แล้ว +2

    Thanks man. Very clear explanation.

  • @TechMalaya
    @TechMalaya 4 ปีที่แล้ว

    Thank you for explaining difference mutablelivedata vs livedata. I am very confused when to used both of them because they are basically almost same.

  • @venukapavarapu1356
    @venukapavarapu1356 5 ปีที่แล้ว +1

    dudee...Just excellent this is really what i want

  • @natetolbert3671
    @natetolbert3671 4 ปีที่แล้ว +1

    The way you describe mvvm, it sounds exactly like mvc. The model is the same, the view is the same, the repository/ DAO/ data layer is the same, and the controller in MVC is a wrapper for the application's business logic. You say that the viewmodel in mvvm has the same responsibility. I am struggling to see the difference.

  • @tiagooliveira95
    @tiagooliveira95 3 ปีที่แล้ว

    I just started learning MVVM so sorry if my question is stupid, at 23:49 you are making an example of what would be a server request, here you have a reference to `mIsUpdating` but is my understanding that I should have my api/db access code in the repository right? So If I make a server request on my Repository, how can I change `mIsUpdating`?
    I guess I could pass a reference of `mIsUpdating` to the repo but this is just me speculating I don't know if it's the best practice

  • @veys7035
    @veys7035 4 ปีที่แล้ว

    I'm confused when you used Singleton Pattern, especially after reading this stackoverflow comment:
    "An Android Service (sub)class cannot be a singleton since the framework requires access to a default constructor for the class. The only reason I can think of for keeping a static reference to the (last) instance for which onStart was called is to simplify some internal code that may happen to reside in static methods.
    Considering that onStart was deprecated a long time ago (as of API level 5), this is most likely an example of bad coding style from early days of Android."

  • @strictnonconformist7369
    @strictnonconformist7369 5 ปีที่แล้ว

    Google could have done far worse than to create an MVVM framework, but Google didn’t do anything for naming more grand than following naming as created by Microsoft for the ViewModel class, keeping in context MVVM is a Microsoft creation.
    Now, if only all the old Microsoft Windows GUI applications were self-consistent for how they were architected for the GUI code versus the rest, with keeping it separated...

  • @ilyichelgar4493
    @ilyichelgar4493 4 ปีที่แล้ว

    I dont understand how the list in the adapter automatically changed. We just call notifydatasetchanged(), but doesn't add the new value to the list in adapter. But somehow when the list in livedata is updated, the list in adapter is updated too. How that's work? The list in adapter is just normal list and we doesn't update it too..

  • @ankitrajdwivedi996
    @ankitrajdwivedi996 5 ปีที่แล้ว

    This one is awesome tutorial........ Please add local cache and retrofit both in your next tutorial..

    • @codingwithmitch
      @codingwithmitch  5 ปีที่แล้ว +1

      Here it is: codingwithmitch.com/courses/android-local-database-cache-rest-api/

  • @wenbinliu6600
    @wenbinliu6600 3 ปีที่แล้ว +1

    Hey Mitch, I am a fan of your tutorials! One question to you for this tutorial: is it a good way to make the repository as a singleton? If that is the way, the singleton instance will be always alive and the livedata inside won't ever be released. I know this makes sense to the demo scenario because it is pure a places app hence we expect the data to be alive for ever. however I think you can explain a little bit for the cases sometimes we don't want to make the repository as singleton, and it should be bind to the lifecycle owner? Just my 2 cents, I am a rookie to Android, especially to LiveData(Jetpack).

  • @HarshaVardhan-xx6ii
    @HarshaVardhan-xx6ii 2 ปีที่แล้ว

    If only the MutableLiveData objects can change and I understand you can "observe" those changes, why would the regular LiveData have the observe method, if it does not change. Are we always supposed to use the MutableLiveData?

  • @sandeepkushwaha5716
    @sandeepkushwaha5716 3 ปีที่แล้ว

    Add imageview inside card view and give card view radius of half of it's height and it will be circular imageview

  • @skywalkerpz
    @skywalkerpz 5 ปีที่แล้ว +1

    Great video as always, and nice teaching keep it up!

  • @bjugdbjk
    @bjugdbjk 3 ปีที่แล้ว

    Mitch, why do we need to use postValue(), Instead you should have used setValue() itself, Since onpostexecute runs on the Main thread, setValue should be good enough right? please correct me if my understanding as wrong.

  • @begmyratmammedov9357
    @begmyratmammedov9357 3 ปีที่แล้ว

    Excellent explanation! Thanks

  • @stalker1361
    @stalker1361 4 ปีที่แล้ว

    It was great. 🙏
    and, so helpful. 🙏
    Thanks, Dear Mitch

  • @chesdasann3345
    @chesdasann3345 3 ปีที่แล้ว

    your video is very helpful and well thought out

  • @andrejuntermanns7660
    @andrejuntermanns7660 4 ปีที่แล้ว

    5:57 The user is a datasource,too. Activity/Fragment editText.getText.toString is data.The user of the app is ALWAYS a Datasource

  • @shanks_1908
    @shanks_1908 3 ปีที่แล้ว

    Loved the tutorial but I couldn't stop looking at the misspelling of Australia in the recycler app 😂

  • @CoolAiAvatars
    @CoolAiAvatars 4 ปีที่แล้ว

    I have found a bug. Each time the app is restarted the dataSet is duplicated. To avoid this I have added dataSet.clear(); in the method setNicePlaces()
    Do you noticed this also? Why the array is saved?

  • @FckYouPlz
    @FckYouPlz 4 ปีที่แล้ว

    Line 46 (28:24) - you are getting back the new list from the viewmodel everytime the observer knows about a change but you do nothing with the new list that you receive - so why bother notifying the adapter for any changes as you do nothing with these changes anyway?

  • @rajeshkadiri5268
    @rajeshkadiri5268 3 ปีที่แล้ว

    Great work Mitch.
    But i have one doubt as per understanding ViewModel data should clear when we click back button in the mobile and activity is destoryed Right. Iam trying to reopen the app then recycler view Items going on increase. Is there any leak the program.

  • @scarswell12
    @scarswell12 3 ปีที่แล้ว

    Great video. I'm gonna have to rewatch it a few times though. As someone new to design patterns it was hard to follow.

  • @minamcvinnie4629
    @minamcvinnie4629 4 ปีที่แล้ว +2

    These are interesting tutorials. The Java is a little odd to follow, though. Are you going to make versions of these videos in Kotlin?

  • @KalpeshChari
    @KalpeshChari 3 ปีที่แล้ว

    I am still confuse with the adapter you have not used data binding in the xml of recyclerView item

  • @theonlyarjun
    @theonlyarjun 5 ปีที่แล้ว +1

    whaaaaaaaaaaat !!!! i made the right decision subscribing you man !!!!

  • @aref111
    @aref111 3 ปีที่แล้ว

    Awesome video , great Job my friend. Thanks for your smooth English and great explanation, I was really frustrated by Indian videos out there.. glg lglgl gl

  • @orhanavan7222
    @orhanavan7222 5 ปีที่แล้ว +1

    Yes I need this right now :) Please more

  • @abdulwahid_mohammed
    @abdulwahid_mohammed 5 ปีที่แล้ว +3

    That sounds so great.
    What are the differences between various Android architectures?
    What is the proper ways to use them?

    • @codingwithmitch
      @codingwithmitch  5 ปีที่แล้ว +6

      They represent different ways to structure your code. MVC, MVP, MVVM. They all have different advantages/disadvantages. But personally I like MVVM for the reasons discussed in this video.

    • @abdulwahid_mohammed
      @abdulwahid_mohammed 5 ปีที่แล้ว +1

      @@codingwithmitch thank you so much sir.

    • @theonlyarjun
      @theonlyarjun 5 ปีที่แล้ว +3

      MVP - addressed separation on concerns
      MVVM - addressed data persistence that was lacked in MVP

    • @codingwithmitch
      @codingwithmitch  5 ปีที่แล้ว

      @@theonlyarjun good way to put it

    • @kaushiknits0307
      @kaushiknits0307 5 ปีที่แล้ว

      @@codingwithmitch I have seen MVP is used to make test driven development which widen the scope for JUNIT testing , but I never saw MVVM being used for test driven development. So my question is whether MVVM can also be used for TDD ?

  • @vivekjagtap7024
    @vivekjagtap7024 5 ปีที่แล้ว

    I just done your demo example , it so simple i understood the concept cleanly . But when i tried to implement this with my Database related app its hard to handle , didn't work in my case. I have to minimize app and then reopen it then i see changes.
    Just waiting for you MVVM Retrofit tutorial to understood it clearly. Thanks for all.

    • @codingwithmitch
      @codingwithmitch  5 ปีที่แล้ว

      It's published codingwithmitch.com/courses/rest-api-mvvm-retrofit2/

  • @SuyashDixit
    @SuyashDixit 4 ปีที่แล้ว

    I have a question here, it's about ViewModel. Should I have ViewModel per screen or per entity or per business module? For example, I have a user authentication module in my app(login/signup) and then profile page and dashboard page that shows user information. Now, should I create one single ViewModel that gives me all necessary methods like login, signup, logout, getUserDetails or should I have multiple like LoginPageViewModel (having only login method), SignUpPageViewModel (having only signup method), ProfilePageViewModel (having only getUserDetails) and so on?
    Also, if a page requires multiple objects like Users and Bookings then what? Should one ViewModel has both the getters or should I have 2 different ViewModels like DashboardUserViewModel and DashboardBookingsViewModels.

    • @garri5108
      @garri5108 4 ปีที่แล้ว

      The same question....

  • @rayalevinson9803
    @rayalevinson9803 5 ปีที่แล้ว

    Thank you for the movie. One important comment: new nicePlace is added in MainActivityViewModel (and not in NicePlaceRepository). I would like to see how to run postValue from the NivePlaceRepository. Thank you.

  • @EL-cb1nu
    @EL-cb1nu 4 ปีที่แล้ว +1

    Please use the dark theme for your IDE... very hard to watch the video during the night

  • @lfzhu586
    @lfzhu586 4 ปีที่แล้ว +1

    Good video! But Android team didn’t come up with the name view model, Microsoft did lol

  • @TarunVarshney1
    @TarunVarshney1 5 ปีที่แล้ว +2

    Can you still tell me any reason to chose MVP over MVVM?

    • @Yogesh-bp4vv
      @Yogesh-bp4vv 3 ปีที่แล้ว

      .. th-cam.com/video/Y5ys6chK_wI/w-d-xo.html

  • @b.k4142
    @b.k4142 5 ปีที่แล้ว +1

    Thanks again mitch!!

  • @fipabrate
    @fipabrate 4 ปีที่แล้ว

    Thank you so much, this was more than helpful!

  • @JayeshBabuAV
    @JayeshBabuAV 4 ปีที่แล้ว +1

    thank u for this tutorial. I have a question. If I want to update 'mIsUpdating' variable from the repository, what is the recommended way to do it?

  • @safees3165
    @safees3165 5 ปีที่แล้ว +2

    Hey Mitch, with repositories, am I supposed to make a single repository for all network operations on my app or multiple repositories with network operations that are relevant to each other?

    • @codingwithmitch
      @codingwithmitch  5 ปีที่แล้ว +4

      Sorry I didn't see this comment until now.
      I would make different repositories to keep it organized.
      Example:
      Suppose you had to query "User" account data and also "News" feed data from a server. I would make two repositories. UserRepository and NewsRepository. Each repository would contain all the methods for managing the data from the server.

    • @safees3165
      @safees3165 5 ปีที่แล้ว +1

      @@codingwithmitch thanks for replying! Makes sense. That's what I have been doing so far

  • @adityabansal2737
    @adityabansal2737 3 ปีที่แล้ว

    Hey Mitch, i ve a question, why did you used different packages for classes in it. They could have been in one package. How does it help ? Thanks in advance

  • @Chekist2008
    @Chekist2008 4 ปีที่แล้ว

    Is mAdapter != null in 46 row inside your activity? U init mAdapter only in 50 row....

  • @chillandcodeyt8065
    @chillandcodeyt8065 3 ปีที่แล้ว

    Pretty awesome work.

  • @TheRahul0110
    @TheRahul0110 4 ปีที่แล้ว

    Hey Mitch! There's a problem. If I actually call an online API in setNicePlaces() method in Repository class, and set the value of dataset in the onResponse(), the LiveData doesn't update the UI with the received data. How should that be implemented? Please help !!!!

  • @michaelshtutman669
    @michaelshtutman669 5 ปีที่แล้ว +3

    Using LiveData in repository seems like a memory leak. Even if activity that was using that data is finished, the last value is stuck in LiveData in a singleton class (repo) until the app process is killed. Repository may return heavy objects and in a big app you can get a lot of RAM wasted this way...

    • @ZubayerAhmed
      @ZubayerAhmed 5 ปีที่แล้ว

      Can you suggest what will be the exact implementation to avoid memory leak, I'm new to this

    • @lucasmendonca1678
      @lucasmendonca1678 5 ปีที่แล้ว +1

      @@ZubayerAhmed Do not keep an instance of the data (the 'dataset' private field in the video) inside the repository class.
      When the user calls 'getDataset()' (in the example of the video, 'getNicePlaces()'), you get all the data from whatever source you are dealing with, wrap it in the appropriate class, and return it to the user.

  • @VipulSharma-qp7hw
    @VipulSharma-qp7hw ปีที่แล้ว

    Do we have to use live data if we are using viewmodel and mvvm ? Like I have some values of user name, address, age etc.. so how to store and retrieve them using viewmodel and mvvm ?

  • @saifbutt3038
    @saifbutt3038 2 ปีที่แล้ว

    Does data get automatically updated in the app when its updated on the server or we have to call api again to get the latest data from server?

  • @critikalfade
    @critikalfade 4 ปีที่แล้ว

    Nicely explained, thanks!

  • @sathidpy.1622
    @sathidpy.1622 5 ปีที่แล้ว +2

    Thank you.

  • @IsanOn
    @IsanOn 5 ปีที่แล้ว +1

    thanks mitch, love it

    • @codingwithmitch
      @codingwithmitch  5 ปีที่แล้ว

      You should watch the full course, you'll really love that. codingwithmitch.com/courses/rest-api-mvvm-retrofit2/

    • @IsanOn
      @IsanOn 5 ปีที่แล้ว +2

      @@codingwithmitch of course mitch ;)

  • @mformobileapps
    @mformobileapps 3 ปีที่แล้ว +1

    ViewModelProviders.of(context) is deprecated..what to use instead

    • @AVdubs1
      @AVdubs1 2 ปีที่แล้ว

      Change:
      mViewModel = ViewModelProviders.of(this).get(MainActivityViewModel.class);
      To:
      mViewModel = new ViewModelProvider(this).get(MainActivityViewModel.class);

  • @codervlogs4921
    @codervlogs4921 4 ปีที่แล้ว

    Very good explanation

  • @ZeeshanKhan-id4fw
    @ZeeshanKhan-id4fw 5 ปีที่แล้ว

    hello mitch i was trying to fetch the data from firebase database using MVVM and following this lecture but it is not working,at the end mutableLivedata showing null,