Goal: find a simple way to reach a usable context in a static method I have found many complicated ways to get a usable context, but I have an easy and simple way. 1. we need a static class, with a global context variable 2. set this variable in the main activity 3. and of […]
Archive for July, 2016
using Context in a static environment (simple way)
11:54 |
android |
767 views
get the cpu version
11:45 |
android |
692 views
Goal: find out the heart of a device It is easy to find the version of the central unit in my device. Seemingly… 1. the android way Use the Build class like this: 2. get info from the company (as I see they can give what they want…) Read the /proc/cpuinfo file. So in a […]
Goal: find out the heart of a device It is easy to find the version of the central unit in my device. Seemingly… 1. the android way Use the Build class like this: 2. get info from the company (as I see they can give what they want…) Read the /proc/cpuinfo file. So in a […]
get the current battery level
18:01 |
android |
737 views
Goal: check the device battery level In a static function like this: The result is between 0-100 (0 is not very common 🙂 )
Goal: check the device battery level In a static function like this: The result is between 0-100 (0 is not very common 🙂 )
using Context in a static environment
16:33 |
android |
771 views
Goal: get Context in a static method Sometimes we need a context in a static method, but we don’t have… Let’s dig one. example: get the device ID (IMEI) in a static function.
Goal: get Context in a static method Sometimes we need a context in a static method, but we don’t have… Let’s dig one. example: get the device ID (IMEI) in a static function.
get the device id (IMEI)
1:51 |
android |
807 views
Goal: get the unique device identifier This is the IMEI/MEID number. We need permission to read this information.
Goal: get the unique device identifier This is the IMEI/MEID number. We need permission to read this information.
set the font style and size in a SearchView
16:06 |
android |
844 views
Goal: let’s customize a SearchView appearance First of all the SearchView is a complex control. We need to find the child TextView to do this changes. Set the following style: here is the code: The findChildrenByClass function like this: public static Collection findChildrenByClass(ViewGroup viewGroup, Class clazz) { return gatherChildrenByClass(viewGroup, clazz, new ArrayList()); } private static […]
Goal: let’s customize a SearchView appearance First of all the SearchView is a complex control. We need to find the child TextView to do this changes. Set the following style: here is the code: The findChildrenByClass function like this: public static Collection findChildrenByClass(ViewGroup viewGroup, Class clazz) { return gatherChildrenByClass(viewGroup, clazz, new ArrayList()); } private static […]
generate random numbers
12:25 |
android |
743 views
Goal: we need this 🙂 We need to know about this. How we can generate a random number between minimum and a maximum value.
Goal: we need this 🙂 We need to know about this. How we can generate a random number between minimum and a maximum value.
date difference calculation
12:22 |
android |
731 views
Goal: get the time difference between two dates The following code gives the difference between two times in this form: 1h 12m The seconds and the days not used. Just good to know how can calculate these values.
Goal: get the time difference between two dates The following code gives the difference between two times in this form: 1h 12m The seconds and the days not used. Just good to know how can calculate these values.
date manipulation
12:18 |
android |
668 views
Goal: sometimes we need to modify a date… Like in this simple case. Let’s add 5 minutes to the actual time. Easy with the java.util.Calendar class. Nota bene: this class can use years, hours, minutes… as well
Goal: sometimes we need to modify a date… Like in this simple case. Let’s add 5 minutes to the actual time. Easy with the java.util.Calendar class. Nota bene: this class can use years, hours, minutes… as well
scrollable TextView in android
11:09 |
android |
689 views
Goal: making a TextView scrollable put two lines to the layout file: plus to the activity:
Goal: making a TextView scrollable put two lines to the layout file: plus to the activity: