In the previous post you saw a brief example about Model View Presenter pattern and how to apply it to update the value of a progress indicator.
In this post you’ll go further and will animate the transition between the initial and final progress values and will include a couple o new functions to your view.
Read moreThere’re many interesting descriptions about the Model View Presenter (MVC) pattern and its ins and outs, for example this (at the end of the article).
It’s a recommended pattern to make views independent and take most of logic out from your activities.
This post shows an extremely brief example about implementing MVP on Android.
Read moreThis little example based on AngularJS shows how to fill an array by creating input fields linked with each of its positions. Also, you’ll see a fine alternative to avoid losing focus issues.
You can find a working snippet here.
Read moreThis is a migrated post from my former blog
I’ve developed a little example app about replacing a Fragment
by another one inside a ViewPager. Also, if you navigate between them it’s possible to keep the backstack:
This is a migrated post from my former blog.
This entry explains a way to remove and activity when you navigate to another. So, if you press back button you won’t return to it.
But, is it useful?