Android Basics Archives - Page 5 of 11 - Androhub

WebView

Android WebView

Android’s WebView allows you to open an own windows for viewing URL or custom html markup page. WebView is a view that display web pages inside your application. You can also specify HTML string and can show it inside your application using WebView. WebView makes turns your application to a web application. In order to

Read More
GPS Location

Android GPS Location Manager

If you are developing any location based app, you can make your app more smarter by finding user’s location automatically. For this you need to integrate location modules in your application. You can learn more about location strategies. Example In this tutorial, we are going to learn how to get user location using GPS location manager

Read More
Internet Connection

Android Detect Internet Connection Using Broadcast Receiver

Android lets your application connect to the internet or any other local network and allows you to perform network operations. A device can have various types of network connections. If your app needs internet connection to make HTTP Requests and or you need internet connection in your whole app then it is better to check

Read More
Android WIFI

Android WIFI

Android allows applications to access to view the access the state of the wireless connections at very low level. Application can access almost all the information of a wifi connection. The information that an application can access includes connected network’s link speed, IP address, negotiation state, other networks information. Applications can also scan, add, save,

Read More
Bluetooth

Android Bluetooth

Bluetooth is a way to send or receive data between two different devices. Android platform includes support for the Bluetooth framework that allows a device to wirelessly exchange data with other Bluetooth devices. Android provides Bluetooth API to perform these different operations. Scan for other Bluetooth devices Get a list of paired devices Connect to

Read More
Browser History

Android History Bookmark

In Android you can access your Browser history and Bookmarks. For more details about Android Browser check developers site. In this tutorial we are going to fetch all bookmarks and browser history and show them over ListView. For fetching Browser data we are going to use Browser.BookmarkColumns. This contains all the columns against Bookmark and

Read More