Skip to main content

Posts

Showing posts from 2011

Massage Reciver Widget for ANDROID Phone

Click Here to Download Massage Receiver Widget. Application snapshot :   How To install in your ANDROID Cell : 1. Open DJ-Android in your Phone and Download APK file.  2. open that file. 3. install that file . Enjoy .......... if you like this apps then share in Facebook , Google+ and any other way. note : this apps full release in market in few days.  it is here for 1 week only. please like it and share it . Thank you. DJ

Android Bluetooth PART-1

how change our device name of Bluetooth :  in your main Activity : in your project manifest file  add this two permissions : <uses-permission android:name="android.permission.BLUETOOTH"/>     <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>

Android Bluetooth Example

in your main Activity class :   in your project manifest file  add this two permissions : <uses-permission android:name="android.permission.BLUETOOTH"/>     <uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>

System Services and Broadcast Receiver in ANDROID

Create a new project :  in main Activity : create new Broadcast Receiver : in your project manifest file :

get all Contacts in ANDROID apps

Create new Android Project : in your res/layout/main.xml Create new layout file in res/layout/row.xml in your Project Main Activity :  Add this permission in your Manifest file : <uses-permission android:name="android.permission.READ_CONTACTS"></uses-permission>

How Pick Photo from gallery in your Android apps

Create new Android apps : in your res/layout/main.xml   in your main Activity :

How use Camera in ANDROID Apps

Create new Android Apps :   use this layout in your res/layout/main.xml in your Main Activity :  Add this permission in your Manifest file : <uses-permission android:name="android.permission.CAMERA"></uses-permission>

How use Google Map in ANDROID apps Part-2

Create new Android Project: in res/layout/main.xml   in your main Activity :   in Android manifest file :

How use Google Map in ANDROID apps Part-1

Getting Your Maps API Key : Find the MD5 fingerprint using the key tool command and specifying the -list parameter and the key store and alias you will use to sign your release application. keytool -list -alias my-android-alias -keystore my-android-keystore   Open : https://developers.google.com/ maps/documentation/android/v1/ maps-api-signup   use this key in your Apps....   this is conti.. in Part 2

get incomming and outgoing Calls in your ANDROID apps

create new android apps: your app structure create Receiver name : inCommingCall.java create Receiver name : outGoingCall.java in last in your Android manifest file

how release your ANDROID application : Signing Your Applications

All Android applications must be signed before they are allowed to be deployed onto a device (or emulator). Unlike other mobile platforms, you need not purchase digital certificates from a certificate authority (CA). Instead, you can generate your own personal certificate and use it to sign your Android applications.  The Android build process signs your application differently depending on which build mode you use to build your application. There are two build modes: debug mode and release mode . You use debug mode when you are developing and testing your application. You use release mode when you want to build a release version of your application that you can distribute directly to users or publish on an application marketplace such as Android Market. To sign your application manually, you need to perform the following steps:  Compile your application in release signing mode. To do so in Eclipse,     Save your file: If you wish to si