Wednesday, January 21, 2015

Wednesday, December 17, 2014

Thursday, December 4, 2014

Creating notification in android.....


This article shows how to create notification in android. public MyNotification(Context ctx){ super(); this.ctx=ctx; String ns = Context.NOTIFICATION_SERVICE; NotificationManager mNotificationManager = (NotificationManager) ctx.getSystemService(ns); long when = System.currentTimeMillis(); ...

Wednesday, December 3, 2014

Creating Custom views in a PreferenceActivity in android...


This article shows how to add custom view in PreferenceActivity in android. Create main.xml, the only necessary view is a ListView, with id: android:id="@android:id/list". <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"  ...

Sunday, September 28, 2014

Wednesday, September 3, 2014

Installing & Uninstalling Home Screen Shortcut.....


This Article shows to create installing & uninstalling home screen shortcut. 1- Create method for adding shortcut to home screen(addShortcut()). private void addShortcut() { Intent shortcut = new Intent(this, MainActivity.class); shortcut.setAction(Intent.ACTION_MAIN); Intent add...

Thursday, August 14, 2014

Creating SimpleAdapter for ListView in Android.....


This Article shows to create SimpleAdapter for ListView in Android. 1- Create row xml for ListView(row.xml). <?xml version="1.0" encoding="utf-8"?> <LinearLayout      xmlns:android="http://schemas.android.com/apk/res/android"      android:layout_width="fill_parent"  ...