Re: [android-developers] Re: Filtered ListView with custom Adapter derived from ArrayAdapter is not updated

2010-03-29 Thread Anton Pirker
Adapter. Ialso have a ListView with a custom Adapter that extends ArrayAdapter. It's a ArrayAdapter of the Type User Have you solved the problem? regards, Anton On Mar 25, 9:45 am, Anton Pirker an...@ignaz.at wrote: Hi! Kumar Bibek wrote: What exactly are you trying to do? Can

[android-developers] Filtered ListView with custom Adapter derived from ArrayAdapter is not updated

2010-03-25 Thread Anton Pirker
) Anton Pirker -- cross platform mobile software burggasse 123/53 a-1070 wien tel: +43 699 1234 0 456 skype: antonpirker http://anton-pirker.at -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group

Re: [android-developers] Re: Filtered ListView with custom Adapter derived from ArrayAdapter is not updated

2010-03-25 Thread Anton Pirker
to my Log.d() Message the artists are filtered, but the list does not change, its not updated! Do you know whats wrong with my code? Thanks! Anton Thanks and Regards, Kumar Bibek On Mar 25, 3:17 pm, Anton Pirker an...@ignaz.at wrote: Hi! I have a ListView with a custom Adapter that extends

[android-developers] How-To write a custom filter for ListView with ArrayAdapter

2010-03-25 Thread Anton Pirker
the updates from the filter? do i have to write a custom filter? what do i have to do? Thanks, Anton -- DI(FH) Anton Pirker -- cross platform mobile software burggasse 123/53 a-1070 wien tel: +43 699 1234 0 456 skype: antonpirker http://anton-pirker.at -- You

[android-developers] Re: Button in ListView

2010-03-19 Thread Anton Pirker
Hi! Thanks for the help! I have now implemented it the way you suggested, but the onSingleTapUp is not firing. This is what i have done: // defined my own gesture detector: class MyGestureDetector extends SimpleOnGestureListener { @Override public boolean onSingleTapUp(MotionEvent e) {

[android-developers] Button in ListView

2010-03-15 Thread Anton Pirker
found a solution that reads: You have to use TouchDelegate But i do not have a clue how! If someone knows how a solution with TouchDelegate looks like, please explain it to me! Thanks, Anton -- DI(FH) Anton Pirker -- cross platform mobile software burggasse 123/53

Re: [android-developers] ADC2 Results?

2009-11-30 Thread Anton Pirker
Hi all! Robert Green wrote: According to their last email, today is the day. Has anyone received news about their ADC2 entry yet I still do not have any information whether i have won or not. Is it just me or are others also still waiting for the google email? Anton -- DI(FH) Anton Pirker

[android-developers] Re: HTC Hero + requestFeature() must be called

2009-11-13 Thread Anton Pirker
Hi Shane! Have you solved your Problem? I think i have the same one! Thanks for any information, Anton On Oct 18, 6:55 am, Shane shanemenchi...@gmail.com wrote: I am getting a requestFeature() must be called before adding content but only on HTC Hero phones.  This error nevers occurs on

[android-developers] showDialog() and requestFeature() must be called before adding content Error

2009-11-13 Thread Anton Pirker
): at android.app.ActivityThread.performResumeActivity(ActivityThread.java:2619) 11-13 10:25:02.345: ERROR/AndroidRuntime(3266): ... 12 more What am I doing wrong? I could swear that this code was working already. Any hints or tips? Thanks in advance, Anton Pirker -- DI(FH) Anton Pirker -- cross

Re: [android-developers] Application design - using threads

2009-11-13 Thread Anton Pirker
class extending Thread with a run() method as usual, or are there better ways of handling it? I recently used an AsyncTask to handle a background task, would that be something that could be of use here? Many thanks for any help. -- DI(FH) Anton Pirker -- cross

[android-developers] Re: showDialog() and requestFeature() must be called before adding content Error

2009-11-13 Thread Anton Pirker
the best thing would be to compile it with sdk 1.5, right? Any ideas? regards, Anton On Nov 13, 10:41 am, Anton Pirker an...@ignaz.at wrote: Hi fellow Android guys and girls! I have following problem. In my Activity I want to show in onResume() and ProgressDialog. I do this call (where

Re: [android-developers] Re: showDialog() and requestFeature() must be called before adding content Error

2009-11-13 Thread Anton Pirker
? - TreKing - Chicago transit tracking app for Android-powered devices http://sites.google.com/site/rezmobileapps/treking On Fri, Nov 13, 2009 at 8:36 AM, Anton Pirker l...@ignaz.at mailto:l

Re: [android-developers] Re: second dialog in activity is not showing

2009-11-01 Thread Anton Pirker
://developer.android.com/intl/fr/guide/topics/ui/dialogs.html On Oct 31, 4:42 pm, Anton Pirker an...@ignaz.at wrote: Hi android guys and girls! I have a really strange problem. I have an activity which displays a map and a marker with the users current location on that maps. Right now my code

[android-developers] second dialog in activity is not showing

2009-10-31 Thread Anton Pirker
2/2. And there is no exception and nothing that tells me what is wrong... Could someone please help me? Maybe there is a better way to get he location and if no location is delivered show a message! Thankful for every hint, Anton -- DI(FH) Anton Pirker -- cross

[android-developers] Disable 2g and 3g networks

2009-10-30 Thread Anton Pirker
Hi all! I am developing an application that is used for a sort of tournaments. The requirements are that if the application is running it should be impossible to make and receive phone calls. Can i disable 2g/3g from within my app? (Airplane mode is no option, because i still need GPS) Thanks

[android-developers] In-App purchasing

2009-10-19 Thread Anton Pirker
this already, and how did you solve it? Any hints/comments welcome! Thanks in advance, Anton -- DI(FH) Anton Pirker -- cross platform mobile software burggasse 123/53 a-1070 wien tel: +43 699 1234 0 456 skype: antonpirker http://anton-pirker.at

[android-developers] Re: In-App purchasing

2009-10-19 Thread Anton Pirker
as these fees are _processed by the Market’s Payment Processor._ And now the big question: how can I do just this? How do I talk to Googles Market Payment Processor from within my app? Thanks, Anton Mark Murphy wrote: Anton Pirker wrote: I have a android app that is for free. Now I

[android-developers] Gears support for Androids WebView

2009-10-13 Thread Anton Pirker
Hi List! I want to write an offline web application but unfortunately the WebKit engine of Androids WebView does not support this Html5 feature. I have tried the offline detection[1] on my Android 1.5 phone and on the Android 1.6 emulator and both do not support offline web applications. But

[android-developers] Usage of WebView.addJavascriptInterface()

2009-10-12 Thread Anton Pirker
Hey List! I have an Application that displays a Website in an WebView. This is working quite good. Now i want give the Website access to a Class of my Android Project with WebView.addJavascriptInterface() [1] This is my Java Code (in an Activity) public void onCreate(Bundle

[android-developers] Re: Usage of WebView.addJavascriptInterface()

2009-10-12 Thread Anton Pirker
Hey Mark! Mark Murphy wrote: Dump the window. -- just reference FileUtil directly. Then I displayed all members of the window object and my FileUtil is missing. It's not supposed to be there. You do not get an actual Javascript object from addJavascriptInterface(). It is a

[android-developers] Android WebView and HTML5

2009-10-09 Thread Anton Pirker
Hey fellow Androids! I am experimenting with Androids WebView[1] and its HTML5 features. I have written a little webpage with does the features detection like described here: http://diveintohtml5.org/detect.html And now I see (I am on a SDK1.6 Emulator) that the LocalStorage, the WebWorkers

[android-developers] Re: Android WebView and HTML5

2009-10-09 Thread Anton Pirker
of webkit. Do you think this is a good idea to do? I do not know how big a compiled version of webkit is and if android has its own optimized version of webkit. Has anyone done something similiar? Thanks, Anton On Oct 9, 12:37 pm, Anton Pirker an...@ignaz.at wrote: Hey fellow Androids! I am

[android-developers] Re: Android WebView and HTML5

2009-10-09 Thread Anton Pirker
Hi Mark! Thanks for the reply! Mark Murphy wrote: Anton Pirker wrote: As a workaround for the missing features i had the idea that i could write my own WebView with an nightly version of webkit. Do you think this is a good idea to do? Only if you have a team of ~10 engineers

[android-developers] Re: Request to official ADC2 team.

2009-09-15 Thread Anton Pirker
+ Mobidev wrote: . Once upon a time, we had this little group… http://groups.google.com/group/android-challenge Android Challenge: Discuss the Android Developer Challenge, including questions on contest details. You can also seek other developers to join a team effort.

[android-developers] How to design a light and a full version of android app.

2009-09-03 Thread Anton Pirker
Hello Androids! I have done a small app for the ADC2 and now i want to make a free light version for the Android market and one full version that will cost some cents. My question now to all who have done something similar: How have you designed your application(s)? I have thought about a

[android-developers] Re: Hmm... at last ADC2 is out of our way ... tell about your app and experience

2009-09-02 Thread Anton Pirker
Hi! I also submitted a little app to the android developer challenge 2. I am from Austria and we started working on our app about two and a half months ago. I did the main development one of my apartment mates did also some coding and a friend from Brazil did the artwork. It's a golf game

[android-developers] Re: Map view

2009-09-01 Thread Anton Pirker
Hi Sasi! Have a look at the Hello-mapView Sample Code from Google: http://developer.android.com/guide/tutorials/views/hello-mapview.html There is everything you need! regards, Anton Sasi Kumar wrote: Can any one help to create map view with a marker. When we are clicking marker it should

[android-developers] Activate GPS service

2009-08-26 Thread Anton Pirker
because of security reasons. Is this true? Is it possible that i open the phones settings screen for gps so the user can activate GPS from within my application? Thanks in advance, Anton -- DI(FH) Anton Pirker --- ignaz software services burggasse 123/53 a-1070 wien tel: +43

[android-developers] Re: Set bearing in MapView (rotate MapView)

2009-08-18 Thread Anton Pirker
Hello again! Has really no one a pointer to information on how to rotate a mapview in sdk1.5? Any help is greatly appreciated! Anton On Aug 14, 12:25 pm, Anton Pirker an...@ignaz.at wrote: Hello List! I am trying to implement amapthat rotates with the bearing i get from the built

[android-developers] Re: Set bearing in MapView (rotate MapView)

2009-08-18 Thread Anton Pirker
on Aug 31th. But what the heck, I will just skip the map rotation and see how i can do my app without it. Cheers, Anton But for now, I think you're on your own. String -- DI(FH) Anton Pirker --- ignaz software services burggasse 123/53 a-1070 wien tel: +43 699

[android-developers] Turn on light of trackball on HTC magic

2009-08-14 Thread Anton Pirker
Hey list! I have a HTC Magic and just love the glowing trackball if you have missed a call. So i wanted to use the trackball light in my own android apps, but i can not find anything on how to make it glow. Does anyone know how to turn the light of the trackball on and of? Thanks in advance,

[android-developers] Re: which is a true Android phone?

2009-08-14 Thread Anton Pirker
that these are an year old...can I use them and upgrade them to latest android? how is the adroid SDK 1.5 related to the Actual Android OS version? Please help. Thanks in advance. -v- -- DI(FH) Anton Pirker --- ignaz software services burggasse 123/53 a-1070 wien tel

[android-developers] Set bearing in MapView (rotate MapView)

2009-08-14 Thread Anton Pirker
Hello List! I am trying to implement a map that rotates with the bearing i get from the built in compass of the htc magic. I have searched the web but found no good solution. Some are outdated (ex override onDraw() in MapView) or just not working for me (because the zoom controls or marker are