What is GPS used for in Android Phone

GPS mean global positioning System. It’s available nowadays in every android phone, and it’s use for different features. You can find your current Position of your mobile through this  feature. When you find your mobile position then you take many work from it. For example  You can find where is the person now mean in … Read more

Android Hello World

package com.example.helloworld; import android.app.Activity; import android.os.Bundle; import android.widget.TextView; public class HelloWorld extends Activity { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); TextView hw = new TextView(this); hw.setText(“Hello World”); setContentView(hw); } }

What is Android

Android is the Operating System for mobile devices which also include Middleware and key Application.Android applications are written in java programming language through Android SDK (Software development kit) which provides the APIs and libraries to develop applications for mobile devices.