In Android development, you can programmatically configure the wireless connectivity of you android devices. Let's find out how to do that, Android comes with a number of system services that are always on, and running and readily available for Android Developers. In Android Development, like all other systems services, provides an API for managing all aspects of the Wi-Fi Connectivity. WifiManager (package name: android.net.wifi) is the class which provides the primary API for the WIFI services. An operation for network connectivity can be done using the ConnectivityManager class (package name: android.net). Continue reading
Tag Archives: Android App development
Android Development using Email Client in Android
How to do Android development using Email Client? This article covers the implementation of the Email Client in Android development. This article covers how to use the Email Client in Android to send Email from the Android Phone.
For the proper Android development and testing, it's advisable to install these softwares on your machine.
- Eclipse Galileo 3.4 or higher versions
- Android SDK 1.5 or higher versions
- Android Development Toolkit Continue reading
Camera Access in Android Development
Camera Access in Android Development- this article will help the developer to understand the camera access and will show how to take picture using applications in Android.
How to Access Camera in Android Application- Sample Program
To access the camera hardware, you need to add the CAMERA permission to application manifest Continue reading
Call Log In An Android Application
How to use/access Phone Call Log in Android Application?
An Android Application can access the call log of the android
phone. This is possible because the call log details are
exposed by the Android platform as a content provider. Content
Providers in Android allow applications to share data across
applications (Refer:
http://www.android-app-market.com/content-provider-in-android.html). Numerous inbuilt content providers are there with the
Android platform. One such content Provider is the
CallLog.Calls content provider.
(Refer:
http://developer.android.com/reference/android/provider/CallLog.Calls.html)
This article uses the CallLog.Calls content provider to access
the call details stored in an Android phone.
Continue reading
jQuery for Android – jQueryMobile Framework
jQuery Mobile Framework is a light-weight framework to create HTML5-based interface system, which works seamlessly on various types of mobile device platforms. It is created on top of powerful jQuery and jQuery UI which are known to create high quality, light weight rich internet applications. As with jQuery and jQuery UI, jquery mobile framework helps to create a lightweight codebase with flexible and easily theme-able design.
jQuery Mobiles has targeted multiple mobile devices available in the market. And the code is tested on majority of the mobile browsers which have got some visibility in the market. To achieve this goal, pages of the jQuery mobile are built with clean semantic HTML so that the page can be displayed on diverse mobile platform. Continue reading