Monday, 26 August 2013

Issue with android webview

I was working with android application. I have found an issue in webview component of android. Html is being rendered in web view easily for older versions of android. But in case of android 4.2.2, i have found that it is rendering blank screen in web view. I have not dig into the issue alot. But i could solve the issue using adding one property in menifest file of my application. android:hardwareAccelerated="false" This line disables hardware acceleration...

Tuesday, 2 April 2013

Openfire Custom IQ Handler

XMPP is providing plenty of Rosters. That we can use to develop a full fledged chat application. But Openfire is delighting its developers by providing custom plugins development. I have been needed to add a plugin that would be helpful to search users from the server. On the application side i needed a list of users with some patterns. I have developed following plugin code for that. This plugin gets installed on server side. It mainly deals with a custom IQ. Whenever application will request for that particular custom...