Re: [android-developers] To the moderators: why are my messages being deleted?

2010-01-18 Thread Urs Grob
Hi guich Are you sure that they got deleted? For example one discussion about accessing folders outside of the application folder was renamed. Maybe to give a better understanding what the discussion is about. Hi, I know that we can safely write to /data/data/app_package... however, can the

[android-developers] Re: InstrumentationTestRunner not specified ??

2009-09-10 Thread Urs Grob
You need to add uses-library android:name=android.test.runner / inside the activity tag. example: http://developer.android.com/guide/samples/ApiDemos/tests/AndroidManifest.html -- Urs On Thu, Sep 10, 2009 at 4:20 PM, WoodManEXP woodman...@gmail.com wrote: Oh, here ya go. Looking under

[android-developers] Re: InstrumentationTestRunner not specified ??

2009-09-10 Thread Urs Grob
Sorry ..inside the applicationtag On Thu, Sep 10, 2009 at 5:03 PM, Urs Grob grob@gmail.com wrote: You need to add uses-library android:name=android.test.runner / inside the activity tag. example: http://developer.android.com/guide/samples/ApiDemos/tests/AndroidManifest.html -- Urs

[android-developers] Re: InstrumentationTestRunner not specified ??

2009-09-10 Thread Urs Grob
I'm not really that fluent in AndroidManifest syntax, so I don't see another problem. On Thu, Sep 10, 2009 at 5:51 PM, WoodManEXP woodman...@gmail.com wrote: OK, I'll place that inside the application tag. The XML looks like this now. Can you tell if the other things in there are placed

[android-developers] Re: Issues with this group

2009-09-04 Thread Urs Grob
I tried searching for highlight ListView (with and without ) in several places including http://groups.google.com/, my gmail inbox (where I keep all posts since Jan '09) and on google (here I added android to the search term). I always get many results and always including the one you mentioned.

[android-developers] Re: Using a hyperlink to do something

2009-09-03 Thread Urs Grob
fyi: there's a bug depending on the version you're using (works in 1.1 but isn't called in 1.5): http://code.google.com/p/android/issues/detail?id=2887 -- Urs On Thu, Sep 3, 2009 at 8:21 PM, Jason Proctorjason.android.li...@gmail.com wrote: i'm not sure whether this is possible in a

[android-developers] Re: Problem in Http Get Method..pls tell me..

2009-09-02 Thread Urs Grob
localhost is the device itself, not your host where the emulator is running on. If I remember correctly you would have to use 10.0.2.2 instead of localhost. -- Urs On Wed, Sep 2, 2009 at 4:08 PM, ragavendran s sraghav.ra...@gmail.comwrote: can u tell me how to send the Url to the server using

[android-developers] Re: Android Toast Duration

2009-07-27 Thread Urs Grob
actually its 3.5 seconds and 2 seconds: http://android.git.kernel.org/?p=platform/frameworks/base.git;a=blob;f=services/java/com/android/server/NotificationManagerService.java#l74 -- Urs On Mon, Jul 27, 2009 at 11:02 AM, Sydneysydney.p...@gmail.com wrote: Toast.LENGTH_LONG and

[android-developers] Re: BouncyCastle code in dalvik/libcore

2009-07-16 Thread Urs Grob
I think at some point the plan was to throw BC out and implement all the crypto stuff using OpenSSL which is also on the device and should be faster than the pure java impls in BC. (this might still be the plan, not sure though) Also BC is huge and was already reduced in size by throwing out

[android-developers] Re: java.net.ConnectException: localhost/127.0.0.1:8000

2009-07-16 Thread Urs Grob
127.0.0.1 is the device, or the emulator. So as long as you don't have a server listening on that port on the emulator/device itself you won't be able to connect. If you want to connect to to a server running on the host, then you'll have to connect to 10.0.2.2 (or something like that) If

[android-developers] Re: Errors In Android Run time I need suggestions

2009-06-23 Thread Urs Grob
There's a NullPointerException on line 31 in org.tuxpan.Adder ... in the method onCreate. That's the cause for the RuntimeException being thrown. -- Urs On Tue, Jun 23, 2009 at 12:54 PM, Desu Vinod Kumarvinny.s...@gmail.com wrote: On Tue, Jun 23, 2009 at 4:23 PM, android.vinny

[android-developers] Re: Errors In Android Run time I need suggestions

2009-06-23 Thread Urs Grob
(R.id.lblStatus)).setText(result.toString()); } catch(Exception E) { ((TextView)findViewById(R.id.lblStatus)).setText(ERROR: + E.getClass().getName() + : + E.getMessage()); } } }); } } On Tue, Jun 23, 2009 at 4:42 PM, Urs Grob grob

[android-developers] Re: DEVELOPER CHALLENGE 2 - Can update of existing published app can participate?

2009-06-18 Thread Urs Grob
Well ... the initial post was 20 hours ago ...don't expect them to be able to answer all posts to the list in less than a day. Also being impatient won't help getting a fast response. You will only get posts like this telling you to be a bit more patient... In case this was your first post, then

[android-developers] Re: File System Root '/' name has extra characters?!

2009-06-13 Thread Urs Grob
This looks like a bug. To not forget it again, please file a bug at b.android.comBest would be if you could also attach some code that reproduces the problem. Thanks for finding this (again) (Maybe this has to do with some code from harmony where also windows drives could be returned ... c:\ or

[android-developers] Re: File System Root '/' name has extra characters?!

2009-06-13 Thread Urs Grob
rid of the garbage at the end). http://android.git.kernel.org/?p=platform/dalvik.git;a=blob;f=libcore/luni/src/main/native/java_io_File.c;hb=HEAD#l55 -- Urs On Sat, Jun 13, 2009 at 9:23 PM, Urs Grob grob@gmail.com wrote: This looks like a bug. To not forget it again, please file a bug

[android-developers] Re: Why did Google Groups not post my comments?

2009-06-13 Thread Urs Grob
Someone posting for the first time gets moderated, so if that was your first post then it might have had to wait for someone letting it pass. On Sat, Jun 13, 2009 at 12:31 AM, Sundog sunns...@gmail.com wrote: Or, maybe you're a noob that needs to calm down a bit. On Jun 11, 10:14 pm, Dennis

[android-developers] Re: httpclient multipart form upload

2009-06-10 Thread Urs Grob
Yes, I also couldn't find the jars for httpmime. I just created a jar from the sources and included that in the project. If anybody knows of some official jar, then I'd also like to know where I could get it (also to stay up to date) Thanks -- Urs On Wed, Jun 10, 2009 at 3:43 AM, Jason Proctor

[android-developers] Re: How to change default google.com page in android browser

2009-06-06 Thread Urs Grob
When you're in the browser press the Menu Button - more - Settings. Then got to set Homepage and enter the default page you want. -- Urs On Sat, Jun 6, 2009 at 1:19 PM, Arunachoudhary2...@gmail.com wrote: Hi, I have an specific requirement to change default home page of Android Browser

[android-developers] Re: httpclient multipart form upload

2009-06-04 Thread Urs Grob
HttpClient 4 doesn't have that included anymore. The upstream project didn't integrate it from the 3.x client. I had to do exactly the same today. Basically I solved it by including some additional jars: mime4j httpmime This question was already on the list and there's some better explanation:

[android-developers] Re: ISO2022JP-UTF-8(unicode) conversion

2009-06-04 Thread Urs Grob
This should be supported. ICU which is included supports JIS. String as well as java.nio.charset is based on the ICU library. There might be some limitations with Collation because Kanji collation data is huge and was not included in the icu data file (afaik). I think this will stay like this

[android-developers] Re: Parsing Dates in other Locales

2009-05-29 Thread Urs Grob
I think this is because many locales are not included in the cupcake release due to size issues. (even less were included in the 1.0 and 1.1 releases) Locales.getAvailableLocales() should return all locales that are supported. The goal will be to include all the locales ICU has to offer. But

[android-developers] Re: how do i kill an android application

2009-05-26 Thread Urs Grob
Longpress in home only shows the last accessed apps, not the currently running apps. -- Urs On Tue, May 26, 2009 at 5:13 PM, Sujay Krishna Suresh sujay.coold...@gmail.com wrote: i tried that out... ddms says that the process died... but when i long press the home button to see the running

[android-developers] Re: Android DOM implementation issues

2009-05-21 Thread Urs Grob
I'm not sure if this is what you're looking for and I never tried it myself. Try setting the property 'javax.xml.parsers.DocumentBuilderFactory' to your own implementation of the DocumentBuilderFactory. The DocumentBuilderFactory.getInstance first tries to load a class by name that's stored in

[android-developers] Re: OpenGL garbage collection (with direct ByteBuffers)

2009-05-20 Thread Urs Grob
I think this problem is already being worked on. https://review.source.android.com/8771 This sounds like something this contribution will fix once it's checked in. -- Urs On Wed, May 20, 2009 at 7:41 PM, K-meister kolin.bur...@gmail.com wrote: Hi, I have discovered while using DDMS that the

[android-developers] Re: SlidingDrawer not working with RC33

2009-02-08 Thread Urs Grob
I'm not sure if it should be part of the sdk. any app created with the sdk already would pass this check. It should more be a tool built into the normal make process so you get warnings like you get right now if you change the api. Additionally it could notify the developer and maybe show him a

[android-developers] Re: Specific Design significance of Attribute Name Spaces in AndroidManifest Files.

2009-01-30 Thread Urs Grob
Attributes live in the global namespace by default; they do *not* inherit the default namespace, unlike elements. On Fri, Jan 30, 2009 at 11:14 AM, Raja Nagendra Kumar nagendra.r...@gmail.com wrote: Any insites by experts pl.. --~--~-~--~~~---~--~~ You

[android-developers] Re: How to remove a file in assets at run time?

2008-12-16 Thread Urs Grob
It would be nice to have something like an installation package that contains the apk as well as some files that are only needed during installation time. Like this you could deploy e.g. your sqlite db file with some initial content or some files that maybe should be stored inflated on the