Be a lazy but a productive android developer – Part 5 – Image loading library
Welcome to the part 5 of “Be a lazy but a productive android developer” series. If you are a lazy android developer and looking for image loading library, which could help you to load image(s) asynchronously without writing a logic for downloading and caching images then this article is for you. This series so far: […]
Read MoreBe a lazy but a productive android developer – Part 4 – Card UI
Welcome to the part 4 of “Be a lazy but a productive android developer” series. If you are lazy android developers for creating row items for ListView/GridView but would want to create an awesome ListView/GridView in easy steps then this article is for you. This series so far: Part 1: We looked at RoboGuice, a […]
Read MoreBe a lazy but a productive android developer – 3 – JSON Parsing library
Welcome to the part 3 of “Be a lazy but a productive android developer” series. If you are lazy android developers for JSON parsing but want to be a productive by using JSON parsing library then this article is for you. This series so far: Part 1: We looked at RoboGuice, a dependency injection library […]
Read MoreBe a lazy but a productive android developer – Part 2 – Genymotion
In previous article, we have explored about dependency injection and RoboGuice library. Today I would want to talk about a tool which is found a great for the testing and development. I have been developing android since 1.5 🙂 and I have seen days and nights of Android and its emulator speed but yes I […]
Read MoreBe a lazy but a productive android developer – Part 1- RoboGuice
I am sure you might be wondering and thinking about the title of the post :), but yes the title is perfectly suits best to developers, as far as I know we android developers are lazy in writing code like findViewById(), click listeners, etc. so how can we optimize throughput time for writing business logic […]
Read MoreIssue: Using setJavaScriptEnabled can introduce XSS vulnerabilities
Issue: “Using setJavaScriptEnabled can introduce XSS vulnerabilities into you application review carefully”. Android Lint returns you the above warning whenever you enable JavaScript by calling setJavaScriptEnabled(true) method on the WebSettings for a WebView. Because WebView consumes web content that can include HTML and JavaScript, which may cause security issues if you haven’t used it properly. […]
Read MoreContextual Action bar (CAB) in Android
Before getting into the action bar and Contextual Action bar concept and coding for it, let me take you through the concept of 2 ways to show contextual actions: 1. Floating Context Menu 2. Contextual Action Mode
Read More