Wednesday, March 16, 2011

Android Push Notification


With the help of C2DM push notification in andriod user can send messages as a broadcast to other android device. It needs no operator services. It needs only Internet services. This is same as the push notification in android if you want any information or any code regarding this then please mail me at onlineandroiddeveloper@gmail.com.


In android push notification can be done by 2 ways first by C2DM(Google) and second one is by third party(Tokudu). for this we want PHP code also.

Wednesday, February 2, 2011

Call Blocking(Rejected) without touching mobile


with the help of

import android.telephony.SmsManager;
import android.telephony.TelephonyManager;

You can reject the phone call during your application runs. for example you play the game in your android device and you want that no one disturb you in your game by call then you can use the code to stop the incoming call. After played game you can check how may people call you also. if you want code then mail me on my email address

Thursday, January 27, 2011

Disabling Search Button

To disable the search button you can use following code that will help you if you want to get more then mail me at onlineandroiddeveloper@gmail.com


final AlertDialog.Builder Main_Dialog = new AlertDialog.Builder(this);
    
     Main_Dialog.setOnKeyListener(new OnKeyListener() {
    
     @Override
     public boolean onKey(DialogInterface dialog, int keyCode, KeyEvent event) {
     switch (keyCode) {
                case KeyEvent.KEYCODE_SEARCH:
                        Log.e("Search", "Search");
                        return true;          
     }
     return false;
     }
     });

Monday, January 17, 2011

Animations in Android

if is there any query regarding the movement of the object in the canvas using android. then please mail me for the answers. my email address is onlineandroiddeveloper@gmail.com. I can't post here anything please follow this link for assistance http://www.anddev.org/basic_and_simple_2d_drawing_-_animation-t3085.html.

Android Push Notification

Here i am do lots of search on the push notification in android. Push notification will be done with the help of the google(C2DM) or from the third party(Tokudu). I can help you if you have any doubts. You can download the application created by me named as HomeworkNow. If you like then mail me on mani.aimt@gmail.com. But i cant post the code here