Month: August 2017
Picasso Image Loader Library in Android
Picasso A powerful image downloading and caching library for Android download the image and display on imageView //Initialize ImageView ImageView imageView = (ImageView) findViewById(R.id.imageView); //Loading image from below url into imageView Picasso.with(this) .load(“YOUR IMAGE URL HERE”) .into(imageView); https://github.com/codepath/android_guides/wiki/Displaying-Images-with-the-Picasso-Library Displaying Images with the Picasso Library READ MORE
Realm Mobile Database
The Realm Data Model https://realm.io/docs/data-model/ http://facebook.github.io/stetho/ https://github.com/uPhyca/stetho-realm
Data Binding MvvM
https://barta.me/android-mvvm-pattern/ Android MVVM pattern August 28, 2016 by Milan Bárta In my last post, I’ve introduced the Android data binding support library which helps to get rid of unnecessary boiler-plate code related to view-model binding. In this post, I’d like to introduce you to the Android MVVM READ MORE
ReactiveX on Android
ReactiveX on Android http://reactivex.io/tutorials.html Android The RxAndroid Project Introduction to RxJava for Android by Matt Dupree (and part 2) Getting Started With ReactiveX on Android by Ashraff Hathbelagal Asynchronous Android Programming (The Good, the Bad, and the Ugly) by Devin Corrigall Grokking RxJava, READ MORE
Material Design for Android Developers
Material Design for Android Developers https://www.udacity.com/course/material-design-for-android-developers–ud862 https://en.wikipedia.org/wiki/List_of_free_and_open-source_Android_applications https://www.udacity.com/google
MIT App Inventor Cheat Sheet
Source: MIT App Inventor Cheat Sheet MIT App Inventor Cheat Sheet Posted on August 20, 2017 by coldstreams I prepared a PDF file that presents a quick look at all the App Inventor blocks. I posted this a long time ago but its still READ MORE
Android Test Lab
Includes many real and virtual devices, various screen sizes and resolution, phones and Tablets. This is what I call testing. Virtual devices. Two screens FHD can hold enough machines. But also, there is always the need for testing on real READ MORE
Android Intro Slider
Making an Android Intro Slider for your Android Application, sliding dots for the slides, Slide View using ViewPager You can download it https://drive.google.com/open?id=0BxHY5QjZ1t84ZVJjMXk4NEk1WEU
Incremental vs differential backup – what is the difference?
http://novabackup.novastor.com/blog/differential-incremental-backup/ Differential and Incremental backups are called “Intelligent” backups. Because only a small percentage of information on a computer changes on a daily basis, running a full-sized backup every day can result in wasted time and disk space. Differential and Incremental backups READ MORE