Cook Your Wireless Application

Initiate developers towards Wirefree Solutions …

Entries for the ‘Android’ Category

Tool for android Views and Layout.

“hierarchyviewer”
e.g. Usage
$ hierarchyviewer
A GUI tool will appear that will show devices on left hand side and running packages on right hand side. TO see how the View hierarchy looks like select Device first. then what package you are interested in and finally Load View Hierarchy  button. It might take 3- 5 seconds to appear.

Comments (1)

Using GPS features in your Android Application

Little Bit of Background to run GPS example in android device.
1. To add GPS Functionality in your Android application, you will have to add the ACCESS_FINE_LOCATION permission to the androidManifest.xml
e.g.
<?xml version=”1.0″ encoding=”utf-8″?>
<manifest xmlns:android=”http://schemas.android.com/apk/res/android” package=”net.learn2develop.GPS”> <uses-permission […]

Leave a Comment

Little bit about Android…

I want to say enjoy your android walk through with these android notes …
Know How / Android Platform .. 
Dalvik virtual machine
 Android use DVM (Dalvik Virtual Machine.) Following are some points  on DVM and android relation….
1. byte code vm similar to JVM
2. .dex byte code files -> java class files got converted into .dex files.
3. […]

Leave a Comment