News
Latest News of Android
Nokia Normandy might be an Asha running Android The rumor mill is churning at full force, and this time, Nokia and Android are the subj...
Read more
0
Developments
BLUETOOTH DEMO IN ANDROID
JAVA FILE CODE IN ANDROID TO CREATE BLUETOOTH APPLICATION:- import android.os.Bundle; import android.app.Activity; import android.view...
Read more
0
Developments
CREATE MAP IN ANDROID
JAVA CODE OF MAP IN ANDROID:- AndroidGoogleMapsActivity.java import java.util.List; import android.graphics.drawable.Drawable; impor...
Read more
0
Developments
ADD ITEM ON LIST VIEW IN ANDROID
JAVA CODE OF DYNAMIC LIST VIEW IN ANDROID:- import android.app.AlertDialog; import android.app.Dialog; import android.app.ListActivity...
Read more
0
Developments
SIMPLE CALCULATOR DEMO
CODE OF JAVA FILE IN ANDROID:- import android.app.Activity; import android.app.AlertDialog; import android.os.Bundle; import android.util...
Read more
0
Developments
ARRAY ADAPTER WITH SPINNER
JAVA CODE OF ARRAY ADAPTER WITH SPINNER:- package com.example.arraylistwithadapter; import android.app.Activity; import android.os.Bun...
Read more
0
Subscribe to:
Posts (Atom)
vehicles
business
health
Contributors
social counter
our facebook page
advertisement
random posts
recent comments
recent posts
Popular Posts
-
A FragmentActivity is a subclass of Activity that was built for the Android Support Package . The FragmentActivity class adds a...
-
NETWORK CHECK CLASS IN ANDROID:- import android.content.Context; import android.net.ConnectivityManager; import android.net.NetworkInfo;...
-
Service Thread IntentService AsyncTask When to use ? Task with no UI, but shouldn't be too long. Use threads within ser...
-
1) fragmentTransaction.addToBackStack(str); Description - Add this transaction to the back stack. This means that the transac...
-
Fragment is a part of an activity, which contributes its own UI to that activity. Fragment can be thought like a sub activity. Fragments a...
-
Android is an evolving platform. Recently 5.0 (Lollipop) version of Android was released, along with the official RecyclerView support...
-
A Fragment is a piece of an activity which enable more modular activity design. It will not be wrong if we say, a fragment is a kind ...
-
Tabs make users easy to switch between different views or functional aspects of an application. In this example, I will show how to add sim...
-
Android is linux based open source operating system, x86 (x86 is a series of computer microprocessor instruction set architectures based o...
-
Main difference is methods of a Java interface are implicitly abstract and cannot have implementations. A Java abstract class can ...