Display currency in Indian rupee format with rupee symbol
Display currency in Indian rupee format with rupee symbol
Display currency in Indian rupee format with rupee symbol
Android simple LineChart, Bar Chart, Pie Chart with MPAndroidChart
Difference between preview size and picture size of android camera
I am developing one application with multiple language support, so I need to check whether language is supported by particular device or not – Android
In this time phone camera comes with high resolution, so it takes more memory. Normally an image size exceed 2MB. This is very high for slow network. Downloading and uploading this image takes too much time, so it requires to be compressed. So that we have following class to compress image. Just initialise class and […]
In this article we are going to build multi-language supported app. We are going to support Gujarati language strings in our android application. How String localisation works: By default android considers English as primary language and loads the string from res->values->strings.xml. When you want to support another language, you need to create a values folder by appending […]
Use font-awesome for Icon in android Here is steps to how to use font-awesome fonts in Android : Download font-awesome from here Create assets folder in app/src/main directory. Now create fonts folder in assets folder You can use it in two ways… either create Custom class which extends TextView or Manually get instance of TextView in Activity and then set font. To choose […]
The simple demo to create lock screen activity for your android app: Create one activity which ask for password or pin. It is may be like Create MyApplication class which extends Application class. Set application name in Manifest.xmlandroid:name=”.MyApplication” ………> Now you need two static variable in MyApplication file. public static boolean locked; private static long […]
Custom switch library for android. Easy to use and with all customization. Follow these steps to use this switch: 1. Download customSwitchLibrary module from here2. Add it in your project.3. Add dependency to your project : compile project(path: ‘:customswitchlibrary’) 4. Now it is ready to use with your project.5. To add view in xml, write tag […]
Search functionality with recyclerview in android. Here is simple demo to make your recyclerview searchable. By following this demo you can implement search functionality to your RecyclerView in android. Here I got country list and display in Recyclerview.Follow these steps to implement search functionality with RecyclerView : Create new project with Android studio. Create xml file […]