Xposed Demo Project for Android Studio

Added Xposed android studio project to Github.You just need to import the project and start coding.

Library Used : XposedBridgeApi-54.jar

Your project structure look like this:

xposed

For Tutorial:

https://github.com/rovo89/XposedBridge/wiki/Development-tutorial

Github:

https://github.com/basil2style/Xposed-Android-Studio-Project

… Read more

PygLatin – Python Code

This is a simple python code which i used while learning python from  . I thought this will be useful for anyone ..

 

… Read more

Json Checker

JsonLint

***Tips Save Time***

JsonLint is a Json Validator site which validates or check your json.This will be helpful when there is many json values.

jsonlint_capture

… Read more
Posted in Tips Leave a comment

Loading html file in Android

***Tips Save you Time ***

Loading local html file in Webview in Android is easy.But, most of them encounter a simple error message like this:

Screenshot_2015-02-14-11-24-21

SOLUTION:

1) Check spelling for assets (include ‘s’)folder in src>main.(If it is asset,Change it to assets)

2) Format to load html from assets folder is:

help = (WebView) findViewById(R.id.webView);
help.loadUrl("file:///android_asset/help.html");

… Read more