Re: [android-developers] Same color specified in xml file and png appear differently?

2012-10-01 Thread Jakob Sachse
Thats it! Thanks Dianne. Am Sonntag, 19. September 2010 01:51:15 UTC+2 schrieb Dianne Hackborn: One thing that could be happening is if your image is entirely opaque then it may be loaded as 16bpp for memory/performance reasons. 2010/9/18 Mark Wyszomierski mar...@gmail.com javascript: Hi

[android-developers] Twitter4j 2.1.4 HttpClietImpl calls wrong Scheme Constructor

2010-09-10 Thread Jakob Sachse
Hi, I was looking for a good twitter lib. Twitter4J claims to be Android platform and Google APP Engine ready. I liked how the website came up with just the example code one needs to jump right into development. I have the twitter4j properties file on my classpath and am using the - core and the

[android-developers] Re: Is it possible to disable scroling in a ListView (GridView)?

2010-07-05 Thread Jakob Sachse
thanks, that link is interesting. Just as behind that link I have to implement a design that contains of GridViews inside a ScrollView. At least I thought I could leverage from GridView. I think that disabling scrolling in gridview / listview is something most developers expect - as to be seen

[android-developers] Re: Is it possible to disable scroling in a ListView (GridView)?

2010-07-04 Thread Jakob Sachse
same here On 28 Mai, 15:49, JMichel jmbouff...@gmail.com wrote: Just to show that there is an interest to this topic... I'm looking to do the same thing. Any help appreciated. On Apr 27, 9:13 pm, alien9 alienjazz...@gmail.com wrote: I have the same question.. did you find an answer?

[android-developers] Wifi API - enableNetwork()

2010-03-29 Thread Jakob Sachse
Hi, I am working on an App that uses the WifiManager to register new wifis and to establish connections to those. Setting up a correct WifiConfiguration Object is discussed in depth and I followed the instructions. Though I ran into some strange behaviour that i'd like to discuss. When I call:

[android-developers] There to put --core-library in 1.5?

2009-06-15 Thread Jakob Sachse
Hello, I want to pass the build process the --core-libary option. But in ADT I don't see such an option. So in Version 1.1 --core-library could be inserted into the build.xml and build was successfull when using ant. It looked like this: --- target name=dex depends=compile

[android-developers] Where to put --core-libary option in 1.5 ?

2009-06-15 Thread Jakob Sachse
Hello, I want to pass the build process the --core-libary option. But in ADT I don't see such an option. So in Version 1.1 --core-library could be inserted into the build.xml and build was successfull when using ant. It looked like this: --- target name=dex depends=compile

[android-developers] Re: Android SDK Content Loader gets stuck....

2009-06-08 Thread Jakob Sachse
I am having the same trouble, is there any workaround that tourned out to be working? On 14 Mai, 22:14, az9...@gmail.com az9...@gmail.com wrote: Stack trace was sent  by email. Part of it is shown below. Trace was captured on Eclipse start (after turning back on Projects- Build

[android-developers] Logcat View fails with Could not create the view: 1

2009-01-13 Thread Jakob Sachse
Hi, when I started my eclipse this morning the Logcat View failed. Instead of Logcat a FailureView is displayed. There the stacktrace displays an ArrayIndexOutOfBoundsException. I had one or two filters for certain pids. Those seem to be unloadable. Has anyone experienced such an error before?

[android-developers] Re: WebView loadUrl using Post Method

2009-01-09 Thread Jakob Sachse
., 17:06, Jakob Sachse jako...@gmail.com wrote: i think the second approach is the way to go here: looking at the docs i found : public void loadData(String data, String mimeType, String encoding) , which will most likely take my markup as first parameter. i'll see and keep this thread updated

[android-developers] Re: what want defineClass(...) ?!

2009-01-09 Thread Jakob Sachse
but in some cases this is not an option. i.e I want to run Rhino on Andorid, which goes well for the interpreter mode, but not in compilation mode since it produces bytecode. On 28 Nov. 2008, 19:46, Ralf ralfo...@gmail.com wrote: You can't. Simply package your java .class in your project and

[android-developers] WebView loadUrl using Post Method

2009-01-07 Thread Jakob Sachse
hey, is there a way of loading an URL with the POST Method instead of GET? I have a very long xml String that I need to deliver to a .JSP , GET Parameters don't allow the needed parameter length. I am looking for something like: mWebView.loadUrl(http://foo.bar/my.jsp,POST,params);

[android-developers] Re: WebView loadUrl using Post Method

2009-01-07 Thread Jakob Sachse
or could i possibly load the content outside the webview by using commons http client, and let the returned markup be rendered by the webview? On 7 Jan., 16:51, Jakob Sachse jako...@gmail.com wrote: hey, is there a way of loading an URL with the POST Method instead of GET? I have a very long

[android-developers] Re: WebView loadUrl using Post Method

2009-01-07 Thread Jakob Sachse
i think the second approach is the way to go here: looking at the docs i found : public void loadData(String data, String mimeType, String encoding) , which will most likely take my markup as first parameter. i'll see and keep this thread updated. On 7 Jan., 16:54, Jakob Sachse jako

[android-developers] message during install: ... has an ealier definition; blocking out

2008-11-25 Thread Jakob Sachse
what does this mean? the information is not sufficient, where have those definitions been found? In the one project that during install caused the message, in the android.jar in other project apk's? I double checked my sources and libs and can't find classes that are defined more that once.

[android-developers] commons logging - android logging

2008-11-22 Thread Jakob Sachse
I am trying to make commons-logging call the android.util.Log, therefor I have written a simple wrapper that implements the commons Log Interface. My problem is, that I allready have lots and lots of calls to org.apache.commons.logging.LogFacotry.getLog(). That method is static and I can

[android-developers] dom level 3 parser?

2008-11-13 Thread Jakob Sachse
Is there anyone out there who has successfully used a DOM level 3 parser on Android? I want to use Rhino with E4X support, it needs eigther org.w3c.dom or xbean. Androids org.w3c.dom package contains only a DOM Level 2 implementation which is not sufficent for that. And until now I havn't got

[android-developers] Re: Succeeded porting Xerces DOM parser

2008-11-05 Thread Jakob Sachse
hello, that seems very interesting. How do you obtain an instance of the SAXParserFactory? For what i suspect the abstract class SAXParserFactory is a member of javax.xml.parsers and the one way of getting a SAXParser Instance. Please correct me if I am wrong. I want to use Xerces since the

[android-developers] howto debug apps with more than one process

2008-10-29 Thread Jakob Sachse
Hallo, I am trying to write a Service thats runs in a seperate process. I am willing to use the Service through IPC from an Activity. thats how my section of the AndroidManifest looks like: ### service android:name=MyService android:process=:remote intent-filter

[android-developers] Re: howto debug apps with more than one process

2008-10-29 Thread Jakob Sachse
to monitor whats happening. The results are displayed in Debug LogCat. Cheers, Wes On Oct 29, 4:00 am, Jakob Sachse [EMAIL PROTECTED] wrote: Hallo, I am trying to write a Service thats runs in a seperate process. I am willing to use the Service through IPC from an Activity. thats how my

[android-developers] Re: howto debug apps with more than one process

2008-10-29 Thread Jakob Sachse
whats happening. The results are displayed in Debug LogCat. Cheers, Wes On Oct 29, 4:00 am, Jakob Sachse [EMAIL PROTECTED] wrote: Hallo, I am trying to write a Service thats runs in a seperate process. I am willing to use the Service through IPC from an Activity. thats how my section

[android-developers] Re: android classloader won't find my classes

2008-09-29 Thread Jakob Sachse
sorry, i meant a tool for browsing .dex files. apk's are zip compatible. On 29 Sep., 11:43, Jakob Sachse [EMAIL PROTECTED] wrote: Hi, I am trying to get java.beans (the apache harmony module) and org.apache.commons.beanutils deployed. Its a dependence that I have to deliver. I have all

[android-developers] Re: android classloader won't find my classes

2008-09-29 Thread Jakob Sachse
resolved: uses-libaray ... in manifest helped out On 29 Sep., 11:51, Jakob Sachse [EMAIL PROTECTED] wrote: sorry, i meant a tool for browsing .dex files. apk's are zip compatible. On 29 Sep., 11:43, Jakob Sachse [EMAIL PROTECTED] wrote: Hi, I am trying to get java.beans (the apache

[android-developers] android classloader won't find my classes

2008-09-29 Thread Jakob Sachse
Hi, I am trying to get java.beans (the apache harmony module) and org.apache.commons.beanutils deployed. Its a dependence that I have to deliver. I have all the sources in my project. I am using a generated ant build script to compile the project, because i have to use the --core-library option

[android-developers] Re: android classloader won't find my classes

2008-09-29 Thread Jakob Sachse
meanwhile I am astonished as well, I will again remove the tags and see... maybe i didn't consider something. On 29 Sep., 16:55, Mark Murphy [EMAIL PROTECTED] wrote: Jakob Sachse wrote: Still there was that tricky NoClassDefinitionFoundError, thrown by PathClassLoader. I was very

[android-developers] Re: android classloader won't find my classes

2008-09-29 Thread Jakob Sachse
then, so again: sorry for the misleading note! On 29 Sep., 17:14, Jakob Sachse [EMAIL PROTECTED] wrote: meanwhile I am astonished as well, I will again remove the tags and see... maybe i didn't consider something. On 29 Sep., 16:55, Mark Murphy [EMAIL PROTECTED] wrote: Jakob Sachse wrote

[android-developers] Re: Getting android multimodal - org.apache.commons.scxml

2008-09-29 Thread Jakob Sachse
the library binaries, if someone is interested in the sources let me know. I'll upload them as well. On 24 Sep., 23:39, Jakob Sachse [EMAIL PROTECTED] wrote: Mark Murphy wrote: If you are including xml-apis in your build, that might conflict with existing DOM and SAX implementations

[android-developers] Re: Attempt to include a core VM class in something other than a core library

2008-09-29 Thread Jakob Sachse
/android-developers/browse_thread/thread/cbbf384a190f6efe/7a59e605a09a100a?lnk=gstq=jakob+sachse#7a59e605a09a100a I hope that will help you, - Jakob. There is another topic I opend regarding this issue. On 29 Sep., 20:26, UBZack [EMAIL PROTECTED] wrote: Hi Oscar, I was getting this error because

[android-developers] apkbuilder.bat faulty?

2008-09-25 Thread Jakob Sachse
I wanted to pass dx some parameters when building a project using ADT with Eclipse, I didn't find how, so I turned to ant. I created a empty project with the activitycreator tool. I put the generated build.xml into my actual project. Then I modified the build.xml to match my project and i

[android-developers] Re: apkbuilder.bat faulty?

2008-09-25 Thread Jakob Sachse
it pointing to the same directory as frameworkdir. Am i the only one getting in trouble with apkbuilder? On 25 Sep., 16:30, Jakob Sachse [EMAIL PROTECTED] wrote: I wanted to pass dx some parameters when building a project using ADT with Eclipse, I didn't find how, so I turned to ant. I

[android-developers] Getting android multimodal - org.apache.commons.scxml

2008-09-24 Thread Jakob Sachse
I am very much interested in integrating Android into a multimodal context. I am trying out several approaches to this, one of which is the deployment of org.apache.commons.scxml (a state machine implementation) on android. I have been keen on getting the stop watch example running, it's like

[android-developers] Re: My Messages won't get displayed

2008-09-24 Thread Jakob Sachse
deleting cookies helped me. http://groups.google.com/support/bin/answer.py?hl=deanswer=70499 On 24 Sep., 11:30, Jakob Sachse [EMAIL PROTECTED] wrote: I can't post to the group, i sent a mail to the group support regarding this, getting in reply: Direct inquires sent to [EMAIL PROTECTED

[android-developers] Re: Getting android multimodal - org.apache.commons.scxml

2008-09-24 Thread Jakob Sachse
Mark Murphy wrote: If that does not clear up your problem, you can try merging the commons.scxml source into your own project's source tree well, basicly thats what i have done so far Janosch wrote: Meanwhile I was turning to the source code of commons.scxml so that i could watch it's unsolved

[android-developers] Re: Getting android multimodal - org.apache.commons.scxml

2008-09-24 Thread Jakob Sachse
. And that hence i could find a way making it work for me as well. Is there anyone who used xalan on android? On 24 Sep., 16:14, Mark Murphy [EMAIL PROTECTED] wrote: Jakob Sachse wrote: Mark Murphy wrote: If that does not clear up your problem, you can try merging the commons.scxml source into your