[android-developers] Partition confusion

2011-12-15 Thread Joerg Pleumann
Hello, would someone from Google mind explaining the current strategy behind the various partitions? I'm a little bit confused. - In the beginning /sdcard was used for external storage, but since you could not rely on the mount point across vendors, the proper way to access it was the

[android-developers] Re: Trouble: Windows XP detecting Nexus One by USB

2010-02-21 Thread Joerg Pleumann
Same problem here. XP32 SP3. Here's what I did/see: - I took same care to make sure no instances of older driver files were on my computer. - I then manually installed the new R3 driver that was downloaded by the SDK Manager. - I plugged in both my ADP1 and my Nexus One. Both have USB Debugging

[android-developers] Re: JDBC Driver for SQLiteDatabase

2009-12-12 Thread Joerg Pleumann
to post:http://code.google.com/p/android/issues/list It seems to be only for bugs though, is it? Anyhow, I commited a bug there half a year ago and it still hasn't been looked at, is anyone dealing with those issues at all? K On Dec 9, 7:41 am, Joerg Pleumann joerg.pleum...@gmail.com wrote: I

[android-developers] Re: JDBC Driver for SQLiteDatabase

2009-12-08 Thread Joerg Pleumann
There is JDBC support in Android (see online reference for package java.sql). There is also a built-in, though somewhat limited JDBC driver for SQLite. Try this inside an Activity: try { String db = jdbc:sqlite: + getFilesDir() + /test.db;

[android-developers] Re: JDBC Driver for SQLiteDatabase

2009-12-08 Thread Joerg Pleumann
I agree the existence of the driver should be mentioned at least in the JDBC package docs. Would you mind creating a ticket for this? JDBC is somewhat of a second-class citizen in the Android world, since Android has its own database API (that is actually not too far away from JDBC, but has much

[android-developers] ListActivity style question

2009-08-17 Thread Joerg Pleumann
Hello, I want to create a ListActivity that looks like the ones in the settings application (two-line items, separators, inverse section titles). Can I inherit these styles from something built into android.R (and can I rely on these style names being stable across versions?). I tried referring

[android-developers] Noser Academy for Android

2009-06-24 Thread Joerg Pleumann
/NoserAcademy09June2009FINAL.pdfhttps://webmail.noser.com/owa/redir.aspx?C=fd1b9862ea9347eaae799113758167dcURL=http%3a%2f%2fwww.nosertomarket.com%2fpress%2fNoserAcademy09June2009FINAL.pdf Looking forward to seeing you in Zurich this fall! Best regards from Switzerland, Joerg -- Joerg Pleumann Head of Android

[android-developers] Re: Noser Academy for Android

2009-06-24 Thread Joerg Pleumann
Hmm, seems the links got broken somehow. Sorry for that. The URLs should look like this: http://www.noseracademy.com http://www.nosertomarket.com/press/NoserAcademy09June2009FINAL.pdf Cheers, Joerg -- Joerg Pleumann Head of Android Development Noser Engineering AG Switzerland On Jun 24, 4:00

[android-developers] Re: How to enforce the soft keyboard

2009-05-12 Thread Joerg Pleumann
...@android.com wrote: The user always has the option to dismiss it. On Sun, May 10, 2009 at 10:48 AM, Joerg Pleumann joerg.pleum...@gmail.comwrote: Hello, is there a way to enforce the soft keyboard throughout the lifetime of an Activity? I tried setting stateAlwaysVisible

[android-developers] Layout broken on Cupcake device

2009-05-11 Thread Joerg Pleumann
Hello, I have a rather simple XML layout that contains a TextView, an EditText and three Buttons. It worked fine on 1.0 and 1.1. It still works fine for Cupcake when launched in the 1.5 SDK emulator. If I install the application on an ADP1 device with Cupcake, though, the text in one of the

[android-developers] How to enforce the soft keyboard

2009-05-11 Thread Joerg Pleumann
Hello, is there a way to enforce the soft keyboard throughout the lifetime of an Activity? I tried setting stateAlwaysVisible in the Manifest.xml as well as the counterpart WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_VISIBLE at runtime, but to no avail. Cheers, Joerg