CategoryAndroid

Loading data in listview on scroll without refreshing list

L

This tutorial will give you brief idea about how to load the data in ListView on scroll down. i came across this situation when i was developing the app where only 10 records to be displayed at start. On scroll the list when user reaches the last record more data gets added to the list like facebook posts. The idea behind this was to get 10 records from web service first and display the list...

Getting a Maps API Key from Google in Andriod Application

G

The MapView class in the Maps external library is a very useful class that lets you easily integrate Google Maps into your application. It provides built-in map downloading, rendering, and caching of Maps tiles, as well as a variety of display options and controls. Because MapView gives you access to Google Maps data, you need to register with the Google Maps service and agree to the applicable...

To get the Multiple Notification on android Device

T

use this code to get the multiple notification on Android Device TO write this code on the set timer Intent intent = new Intent(SecondActivity.this, MyBroadcastReceiver.class);   intent.putExtra(“ID”, 10);   intent.putExtra(“Val”, “me aahe”);   final int intent_id= (int) System.currentTimeMillis(); PendingIntent p1 = PendingIntent...

Category