Category Archives: Android Development
Removing an app icon from launcher

On Android you find a lot of apps who are free and with installing an extra “app” you get extra features. A few examples are: – Out of milk – Andlytics – COL Reminder After activation the app should be installed but you want to remove only the app icon in the launcher. Here is…
Removing an app icon from launcher

On Android you find a lot of apps who are free and with installing an extra “app” you get extra features. A few examples are: – Out of milk – Andlytics – COL Reminder After activation the app should be installed but you want to remove only the app icon in the launcher. Here is…
Missing Android Javadoc in Eclipse?

If you see in your Eclipse on mousover this: Instead of the original Android Javadoc entry: Follow this steps to get it back again: In Eclipse, right click on your Android project and select Properties On the menu on the left, select “Java Build Path“ On the right side, select the “tab” labelled…
Color the standard Android Button

If you would like to color the standard Android button, like in the app “OpenTable” here is the code how you can do that. See the app “OpenTable” Screenshot to the right. At the bottom there is an standard Android button with color red. At the moment i had not found to do this with…
Windows 95 on Android Phone
I’ve just installed Windows 95 on my Nexus One ๐ Very cool … You only need a folder on you SD-Card and you have do install 1 APK file. Runs great on my phone ๐ If you want to try it yourself, here is the link: http://forum.xda-developers.com/showthread.php?t=694105
Reload strings on localize change
If you change the language in the app (read post before “Force Localize an Application on Android“) you run into the problem to reload the new language strings.
Force Localize an Application on Android
As the title stated, you can force your application to be localize on an application basis and not system basis. In this article we would use german and english. To do this you have to edit something on your oncreate function on your default activity. import android.app.Activity; import android.content.res.Configuration; import android.os.Bundle;