Sebastian - Android developer
When there’s no limit to what Android gets, there’s no limit to what Android does
When there’s no limit to what Android gets, there’s no limit to what Android does
Aug 29th
La Vuelta – Tour de Spain on Android
With La Vuelta you can see Tour de Spain in detail directly on your Android device.
Not live during the race, but after every stages results will be updated via internet.
Hope the size it has does not create problems. I embedded in the application the images about stages : map, profil and last km.
Please comment if you want more features.
Aug 29th
Main functions of EuropaFM Android application :
Version : 1.0
Release date : 30.08.2010
More >
Aug 26th
I just added AdMob to my Android app DRoute and it doesn’t work. I receive many calls to onFailedToReceiveAd event function
I dig into the problem, search on the internet and didn’t found a solution. This morning I’ve created step by step a fresh new app only to test AdMob publisher code and ID and it works fine on emulator with :
After step by step testing I found out that the problem was with a padding value that I have in my surrounding
More >
Aug 10th
By default pressing Back button on any activity the Android sistem will close / destroy the activity ( OnDestroy method is called ) See : Activity Lifecycle.
This can be a little annoying when you have some service that perform background work.
More >
Aug 5th
On Froyo ( Android 2.2 ) the user have the option to move / install applications to sd card. This is good due to lack of space on phone memory.
To enable this option at application level the developer should do some simple modifications.
internalOnly: Install the application on internal storage only. This will result in storage errors if the device runs low on internal storage.preferExternal: The android system tries to install the application on external storage. If that is full, the application is installed on internal storage.auto: Let the Android system decide the best install location for the application. The default system policy is to install the application on internal storage first. If the system is running low on storage, the application is then installed on external storage.References : http://android-developers.blogspot.com/2010/07/apps-on-sd-card-details.html
Jul 31st
With services there are 2 ways to work with :
I will write a simple tutorial about the second option.
I use Eclipse and ADT Plugin for Eclipse . This will do some background work.
Jul 10th
You can use Preference classes from Android SDK to store, set and retrieve Settings at application level or at activity level.
There are 2 ways to manipulate preferences :