BREAKING:

Issue: 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 More

Contextual 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

Introduction to Android Studio

Feeling good to be back at blog :). Actually I have been managing GDG Ahmedabad, delivering android talks and managing workshops locally and outside my regions. Last month, I was quite busy in organizing “DevFest” event for the GDG Ahmedabad and then for the preparation of my 2 talks for the GDG Kathmandu DevFest. I […]

Read More

Android – Volley library example

I am not sure whether you have heard “Volley” word yet but it’s the library on which one expert talk was delivered during Google I/O 2013 by Ficus Kirkpatrick. What is Volley library exactly for? Volley is a library that makes networking for Android apps easier and most importantly, faster. It manages the processing and […]

Read More

Android – Import projects from Git

There are many cases when we have requirement and need to clone Git repository, at that time we have to clone repository by using Git Client, FYI I have installed Git GUI client on my windows machine. By cloning this way, we have to import those project into eclipse manually. Now, What if there is […]

Read More

TechnoTalkative Examples on github

Earlier I have uploaded examples on 4Shared.com and later I started uploading on directory of this blog itself. But still many of you are facing issues in downloading examples from 4Shared. And I have received many requests and feedback for making my examples available on github or bitbucket or else where, which will be easy […]

Read More

Android – How to display information with justify alignment?

Problem: How do i display information with Justify alignment? Solution: I saw many developers asking questions on Stackoverflow for this problems. Here are some: 1. Android TextView Justify Text 2. How to justify text on a TextView made easy- Android 3. Justify Text in TextView Android We can display justified information in WebView, as such […]

Read More