App development
- 13 January
Android SQLite Database CRUD example
In this tutorial, we are going to learn about Android SQLite database CRUD example. Android SQLite is open source relational database which can be used for performing crud operations. You don’t have to do explicit installation for it. It is available by default in android. Let’s start with simple example: In this example, we will […]
- 05 December
Android Switch button example
Android Switch Button is UI widget which has only two states i.e. ON and OFF. It allows user to change setting between these two states. Android Switch button is available only in Android 4.0 or later android devices. Example : You can use these buttons to change On and Off state of WiFi or Bluetooth […]
- 05 December
Android ToggleButton example
Android ToggleButton is UI widget which has only two states i.e. ON and OFF. It allows user to change setting between these two states. Example : You can use these button to change On and Off state of WiFi or Bluetooth Source code: Download Github Source code Step 1 :Creating Project Create an android application project named […]
- 04 December
Android Spinner Dropdown Example
In this post, we are going to see about Android Spinner Dropdown example. Android Spinner is a UI widget which have dropdown. Once you click on dropdown , you can select one option among various options. I am going to put static data in android spinner and select one of value from them. Source code: […]
- 03 December
Android Custom Toast example
Android Toast is used to display message for short span of time. Message appears on the screen for short span of time then disappears after some time. We have already used toast in previous examples like Android SeekBar , Android RatingBar . In this post, I am going to demonstrate how to make custom toast […]
- 03 December
How to load html string in WebView in Android
In this post, we are going to see how to load html String in a WebView in Android Android WebView is a android UI widget which is used to open any web url or load html data. It is used to show web page in android activity. In simple words, Android WebView is a View […]
- 03 December
Android WebView example
In this post, we are going to see Android webview example. Android WebView is a android UI widget which is used to open any web url or load html data. It is used to show web page in android activity. In simple words, Andorid WebView is a View that displays web pages. Example : Lets […]
- 23 November
Android Custom ListView with Images and text example
In previous post, we have seen simple android ListView example. In this post, we are going to see Android Custom ListView example. So we will create custom ListView in which each list item will have Country flag, Country name and its capital in different font size as below. It is widely used in android apps […]
- 21 November
Android Custom SeekBar example
In previous post, we have already seen Android SeekBar example. In this post, we will see how to create Custom SeekBar. If you follow Android SeekBar example , you will see below screen. We will customize above SeekBar and it will look as below after customization. If you want to customize above SeekBar , you […]