App development
- 20 November
Android Splash Screen Example
In this post, we will see how to create Android splash screen. Android splash screen is nothing but screen that appears when some background task (such as fetching data from database,loading images) is going on. These kind of task generally tasks long and at that time, we can show splash screen. Splash screen can be […]
- 19 November
Simple Android ListView example
In this post , we are going to create simple ListView. ListView is the view in which you arrange your list items in vertical order. For example: It is very popular widget which is used almost in every application. In this post, I am going to create a very simple list view . If you […]
- 19 November
Android RatingBar example
In this post, we are going to see about Android Rating Bar. RatingBar is android widget which is used to provide rating bar with star icons. You might have seen this RatingBar when any application asks for you to rate installed app. It is very easy to create Rating in Android. Just follow below steps […]
- 19 November
Android SeekBar example
In this tutorial , we are going to see Android SeekBar example. SeekBar is extension of ProgressBar. You can drag cursor left or right to select correct value. It is generally used in setting brightness or music progress or setting sound. It is very easy to create SeekBar in Android. Just follow below steps to […]
- 16 November
Add internet permission in AndroidManifest.xml in android studio
In this post, we will see how to add internet permission in android studio. When you are working on app which wants to access internet, you need to add extra permission in androidManifest.xml else your application won’t be able to access internet. So you need to put below code in AndroidManifest.xml file to access internet […]
- 15 November
How to enable or disable Wifi in android programmatically
In this post, we will see how to enable or disable Wifi in android programmatically. It is very simple to enable or disable wifi from android code. For enabling WiFi: [crayon-6729bd59a59cf589747887/] For disabling Wifi: [crayon-6729bd59a59d3703721385/] So you can enable or disable WiFi using WifiManger class. You need to add extra permissions in AndroidManifest.xml to enable […]
- 15 November
Check battery health in android programmatically
Sometimes when you are developing an android application, you may want to get current battery health In this post, we are going to see how to get current battery voltage in android. You can use intent.getIntExtra(BatteryManager.EXTRA_HEALTH,0) to get information about current battery voltage. Source code: Download click to begin 20KB .zip Step 1 : Create an android […]
- 15 November
How to enable or disable Bluetooth in android programmatically
In this post, we will see how to enable or disable Bluetooth in android programmatically. It is very simple to enable or disable bluetooth from android code. For enabling Bluetooth: [crayon-6729bd59a5c00521235225/] For disabling Bluetooth: [crayon-6729bd59a5c03775545143/] So you can enable or disable Bluetooth using BluetoothAdapter class. You need to add extra permissions in AndroidManifest.xml to enable or […]
- 14 November
get battery voltage in android programmatically
Sometimes when you are developing an android application, you may want to get current batter voltage In this post, we are going to see how to get current battery voltage in android. You can use intent.getIntExtra(BatteryManager.EXTRA_VOLTAGE,0) to get information about current battery voltage. Source code: Download click to begin 20KB .zip Step 1 : Create an android […]