• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. E

    Error retrieving a Serializable from a Bundle with a ClassLoader set

    I'm trying to retrieve a Serializable object (Bundle.getSerializable(String key)) from a Bundle I've constructed using the Bundle(ClassLoader loader) constructor. While doing this I get a ClassNotFoundException. The comment of the Bundle constructor states: "Constructs a new, empty Bundle...
  2. E

    1.5 pre-release - DexClassLoader issue

    Hi, Seeing that the new 1.5 pre-release has support for loading classes dynamically I immediately tried to see if it works. I used the DexClassLoader(String dexPath, String dexOutputDir, String libPath, ClassLoader parent) constructor. But I soon found out that it works only partially...
  3. E

    Programmatically delete a home-screen shortcut

    Hi, I have some questions related to Android's home-screen contents: 1) Is there a way to programmatically delete a home-screen shortcut on Android? I know that it can be done manually but I want to do it in code. 2) Is there a directory where all the contents of the home-screen are...
  4. E

    Permissions to intall other apps...

    Hi, We are a team of Android developers and we are facing a serious problem for quite some time. Our app (a game client) is designed in such a way, that once it's installed it can be used to download games from a game server. In order for the downloaded games to work, they have to be...