[android-developers] Re: TextView inner shadow

2010-12-18 Thread Stefan Klumpp
I'm also interested in that. Anyone? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Android: DeadObjectException for InputMethodService (SoftKeyboard API sample)

2010-11-03 Thread Stefan Klumpp
I'm playing around with a modified version of the SoftKeyboard sample and sometimes get a `DeadObjectException` when using the fullscreen mode (e.g. when orientation == landscape). I can still enter text, but the `ExtractEditText` doesn't update and I get the logcat output below, whenever I hit a

[android-developers] Resources, examples or tutorials to develop a custom fullscreen IME

2010-08-25 Thread Stefan Klumpp
I try to find resources on how to develop a fullscreen IME (one that covers the whole screen size) for Android. Someone asked the same question here: http://stackoverflow.com/questions/2749964 but no response so far. Anyone here can help? -- You received this message because you are subscribed

[android-developers] Android IME: how to show a pop-up dialog?

2010-08-17 Thread Stefan Klumpp
I already asked this question on StackOverflow, but wasn't able to receive a helpful answer by now. I thought here on the Google Group might be a few more advanced Android developers who would be able to point me in the right direction. A detailed description of my question is here:

[android-developers] Re: Google Analytics for Android: Dispatcher thinks it finished, but there were 65 failed events

2010-03-19 Thread Stefan Klumpp
There is also a discussion going on here: http://stackoverflow.com/questions/1607822/android-what-does-this-google-analytics-dispatcher-warning-mean Unfortunately with no solution so far. -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Google Analytics for Android: Dispatcher thinks it finished, but there were 65 failed events

2010-03-18 Thread Stefan Klumpp
I get this strange error message: W/googleanalytics(29930): Dispatcher thinks it finished, but there were 65 failed events Anyone an idea where this comes from and what the solution/workaround is? -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: singleTask + activity stack not preserved?

2010-03-10 Thread Stefan Klumpp
+ If there is no intent_filter listed then even with launchMode=singleTask re-launch from Home returns to the last activity in the task. Okay if removing all intent-filter entries in the manifest is the solution (or temp. workaround) how do then start your application? Don't you need at least

[android-developers] Re: Android 2.1 bug: uses res/layout-v3 instead of res/layout

2010-01-22 Thread Stefan Klumpp
Thanks for your response Lance. The documentation states that version qualifiers are for that version and higher, not just that version: Yes, I mixed that up. Is corrected now. Although there are bugs. Android 2.0.0 matches only -v6, for example. Yes, I just figured that out as well by

[android-developers] Re: Nexus One - Geocoder causes IOException - works perfectly with other devices and emulator

2010-01-22 Thread Stefan Klumpp
Okay. The weird thing is now: sometimes it works. Sometimes it doesn't. Anyone a clue? On Jan 18, 5:20 pm, Stefan Klumpp stefan.klu...@gmail.com wrote: The code below works perfectly for real devices running on 1.5, 1.6 and 2.0 as well as the emulator running on 2.1. However, executing

[android-developers] Android 2.1 bug: uses res/layout-v3 instead of res/layout

2010-01-21 Thread Stefan Klumpp
In addition to the general res/layout folder I have a res/layout-v3 folder for backward compatibility with Android 1.5, which has problems with some RelativeLayouts. It works perfectly with all phones and emulator versions tested so far. Except of 2.1 (emulator and Nexus One). They choose to

[android-developers] Nexus One - Geocoder causes IOException - works perfectly with other devices and emulator

2010-01-18 Thread Stefan Klumpp
The code below works perfectly for real devices running on 1.5, 1.6 and 2.0 as well as the emulator running on 2.1. However, executing it on the Nexus One (running 2.1) raises an IOException: java.io.IOException: Unable to parse response from server at

[android-developers] Can't access Motorola Milestone on Ubuntu 9.10 via adb (HTC Magic works perfectly fine)

2010-01-12 Thread Stefan Klumpp
I've two phones, the HTC Magic and since today also the Motorola Milestone. While the Magic works perfectly, I'm not able to access the Milestone via USB (adb devices). Here are my log outputs and settings for both: ## HTC Magic lsusb: Bus 001 Device 009: ID 0bb4:0c02 High Tech

[android-developers] Re: How to downgrade T-Mobile G1 from Donut to Cupcake?

2010-01-05 Thread Stefan Klumpp
Most likely you will find the information you need on: http://theunlockr.com/ On Dec 18 2009, 5:03 pm, Greivin Lopez greivin.lo...@gmail.com wrote: Hi, I need to supportAndroid1.5 (Cupcake) for my application but I don't have any 1.5 device.  I currently have a Motorola Droid with 2.0.1 and

[android-developers] Re: ERROR: Application requires API version 6. Device API version is 5 (Android 2.0)

2010-01-04 Thread Stefan Klumpp
I've a similar problem: [2010-01-04 13:44:18 - Tato]ERROR: Application requires API version 4. Device API version is 3 (Android 1.5). [2010-01-04 13:44:18 - Tato]Launch canceled! I started my application with API version 4, but then changed it to API version 3 (via project properties - Android).

[android-developers] Re: ERROR: Application requires API version 6. Device API version is 5 (Android 2.0)

2010-01-04 Thread Stefan Klumpp
/uses-sd... Changing the build target in the project properties doesn't automatically update this. On Jan 4, 7:47 am, Stefan Klumpp stefan.klu...@gmail.com wrote: I've a similar problem: [2010-01-04 13:44:18 - Tato]ERROR: Application requires API version 4. Device API version is 3

[android-developers] Forward search queries to one single activity that handles search

2009-12-15 Thread Stefan Klumpp
have an activity handling search (ACTIVITY_1), which works perfectly when I use the search (via SEARCH button on the phone) within/from this activity. However, when I use search from another activity (ACTIVITY_2..x) by implementing onNewIntent and forward the query string to my

[android-developers] Re: Forward search queries to one single activity that handles search

2009-12-15 Thread Stefan Klumpp
the search you can startActivityForResult() On Dec 15, 12:11 pm, Stefan Klumpp stefan.klu...@gmail.com wrote:  have an activity handling search (ACTIVITY_1), which works perfectly when I use the search (via SEARCH button on the phone) within/from this activity. However, when I use

[android-developers] Re: Forward search queries to one single activity that handles search

2009-12-15 Thread Stefan Klumpp
process they search intent. On Dec 15, 2:38 pm, Stefan Klumpp stefan.klu...@gmail.com wrote: Your assumption is partly right. I want all activities to accept search queries (via the search button on the phone), although I want only one single activity to handle the search (via a web server

[android-developers] Re: BitmapFactory: decoder-decode returned false

2009-11-24 Thread Stefan Klumpp
Still no solution for that, but it seems that other developers have similar problems. The strange thing is that exactly the same image usually doesn't work, but sometimes it actually does. No idea why though. On Oct 27, 12:28 pm, Stefan Klumpp stefan.klu...@gmail.com wrote: For my current

[android-developers] Re: BitmapFactory: decoder-decode returned false

2009-11-24 Thread Stefan Klumpp
I've done more testing and tried out different stuff. I've posted a detailed description here: http://stackoverflow.com/questions/1630258/android-bitmapfactory-decoder-decode-returned-false However, still no perfect solution at this point. On Nov 24, 11:02 am, Stefan Klumpp stefan.klu

[android-developers] Making search available throughout the whole application

2009-11-24 Thread Stefan Klumpp
Right now I'm adding: intent-filter action android:name=android.intent.action.SEARCH / category android:name=android.intent.category.DEFAULT / /intent-filter meta-data

[android-developers] Current View object compare with R.id.my_layout

2009-11-02 Thread Stefan Klumpp
Is there a way to check whether my current View has inflated R.id.my_layout_1 or R.id.my_layout_2? Something like currentView.getLayoutID()? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

[android-developers] [Eclipse] layout preview doesn't work properly when using style

2009-10-29 Thread Stefan Klumpp
When I include style elements from /res/values/styles.xml the Layout designer/preview within Eclipse doesn't update with these styles, but shows as it would be without any styles. Can anyone confirm this issue? If so, Is there a way I can fix this myself easily? If not, where's the appropriate

[android-developers] BitmapFactory: decoder-decode returned false

2009-10-27 Thread Stefan Klumpp
For my current application I collect images from different event providers in Spain. However, when downloading images from salir.com I get the following logcat output: 13970 Gallery_Activity I Fetching image 2/8 URL: