Know If Service is running or not in android
Know If Service is running or not in android
Know If Service is running or not in android
Android – SQLite database handling with singleton class
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 […]