GT's Blog
Code snippets, technical articles, tips on computing and programming...
Pages
(Move to ...)
Type in Nepali Unicode Romanized - Convert Roman Nepali to Unicode Tool
▼
Showing posts with label
Android
.
Show all posts
Showing posts with label
Android
.
Show all posts
Android Reverse Engineering - decompile .apk-.dex-.jar-.java
›
Reverse engineering of android java app using apktool, dex2jar, jd-gui to convert .apk file to .java. By reverse engineering of android a...
2 comments:
Android: Killing a running process with processid(pid) and package name
›
After analysis of source code of Android's package manager application, i found forceStopPackage method is used by system image to kill...
3 comments:
Android: Code for detecting if specific application or service running
›
For checking a application is running or not : public static boolean isThisApplicationRunning(final Context context, final String appPackag...
Android code for reading phone contacts detail
›
Here is code for reading all phone contacts(phone number, email etc with their type) stored in android phone programmatically.
7 comments:
Android Reading Call Log from Phone Programmatically
›
Here is the code to read all call log data (MISSED, OUTGOING, INCOMING) from android phone programmatically. Permission in AndroidManifest...
6 comments:
Calling JavaScript Function from Android and Handling Result
›
In this tutorial I am going to describe JavaScriptInterface for Calling Android Function from JavaScript i.e., JavaScript Binding to Androi...
12 comments:
Android JavaScriptInterface tutorial and example for calling JavaScript function from Android
›
In this tutorial I am going to describe JavaScriptInterface for calling JavaScript function from Android i.e., JavaScript Binding to Androi...
Android WebView WebChromeClient example tutorial
›
WebChromeClient is used to handle a JavaScript events in Android App which are produced by WebView. The examples of such events are : ...
4 comments:
Android WebView Complete Example Tutorial
›
The WebView class allows you to display web pages as a part of your activity layout. WebView becomes helpful when your application frequ...
6 comments:
save an Android application's state and restore
›
The savedInstanceState way for saving state associated with a current instance of an Activity, for example - current navigation, selections,...
declare global variable in android- example code
›
To declare global variable in android, you need to 1) create your own subclass of android.app.Application , 2) and then specify that cl...
1 comment:
Android hide soft keyboard code
›
Working code for hiding the soft keyboard in Android : getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HID...
Android Code: Latitude and Longitude of the mobiledevice
›
We should use the LocationManager . LocationManager lm = ( LocationManager ) getSystemService ( Context . LOCATION_SERVICE ); Locatio...
My first Android project in Eclipse: Multiplication Table Generator App using TextWatcher and OnClickListener
›
After removing the configuration errors that came during running the auto generated Hello World project, I decided to write a Multiplication...
Error Free Android Hello World Project on Eclipse
›
Removal of two common errors that may arise when running the android project on eclipse. [ PANIC: Could not open: C:\Users\gTiwari\.android...
6 comments:
android get current screen orientation
›
The current configuration ( orientation as well) can be available from the Resources' Configuration object as: The return parameter ma...
java android write to sd card
›
You can access to sd card by File sdCard = Environment . getExternalStorageDirectory (); Note : Hard coding the /sdcard/ folder is not ...
Android : Activity and View Understanding
›
What are Activity and View in Android: Dissecting HelloAndroid.java - Activity and View FirstSee this example:
Android: Application Project Structure in Eclipse
›
The Android project (under Eclipse ADT) consists of several folders: Android - Project folder structure src : Java Source codes. The...
Android : AndroidManifest.xml description
›
What is and usage/purpose of androidmanifest.xml file Android Application Descriptor File - AndroidManifest.xml Each Android applicat...
›
Home
View web version