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

Recent content by miXer

  1. M

    Apps [TUTORIAL] Use logcat to post problems

    I'm reading this forums regularly. And very often, at least once a week there is a person in here asking for help because his app has crashed. Thats fine and all that, but for us to be able to help you, we need to see the exception thrown and if possible the code that produced the exception...
  2. M

    Root Android 2.3 with Sense 1.0

    Hey Is there any rom out there with Gingerbreader(2.3, 2.3.4) that has the old Sense(1.0, the one with Froyo)? I ask this because i really don't like what HTC has done to the new Sense. The lockscreen is nice, but the rest is ugly. If not, is there a rom with Gingerbread(2.3, 2.3.4) with...
  3. M

    Apps Create chooser or pick activity

    In my app I retrieve a contact, but when I have gotten it I find out it has several phone numbers. How can I create a ACTION_PICK or ACTION_CHOOSER intent with these phone numbers and pick/choose the one I want?
  4. M

    Apps Get default messaging application

    Hey. I would like to launch the default sms appliction inbox from my app. I have found the sms packages(android sms application and handcent sms) via getPackageManager() and queryIntentActivities(), but i can't find out which one of these are the default application. I would like to only get...
  5. M

    Apps PowerManager and WakeLock

    Hey. I'm developing an sms receiver, and i have included a KeyguardManager and a PowerManager to be able to disable the keyguard and turn on the screen if user would like to. This works great, but only once. When a message is received, the keyguard gets unlocked and the screen is turned on...
  6. M

    Apps Check for dialogs open

    Hey. I'm writing an app that receives incoming sms. I have tried two different approaches. 1. One app that receives and displays the message in a custom dialog. The problem here is that my app holds the broadcast receiver so the builtin sms application doesn't get the sms until i close my...