Skip to main content

Posts

Showing posts from November, 2011

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

Sqlite Database With Cursor Adapter in Android

First Create Database Helper : now in your first layout : res/main.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     android:orientation="vertical"     android:layout_width="fill_parent"     android:layout_height="fill_parent"     >     <ListView     android:layout_height="fill_parent"     android:id="@+id/@android:list"     android:layout_width="fill_parent"></ListView> </LinearLayout> second layout for insert Values: res/inslayout.xml <?xml version="1.0" encoding="UTF-8"?>     <RelativeLayout android:id="@+id/relativeLayout1"     android:layout_width="fill_parent"     android:layout_height="fill_parent"     xmlns:android="http://schemas.android.com/apk/res/android">