[android-developers] LetterRecognizer API in the Gesture class

2010-10-11 Thread marmor
Hi, I'm implementing a gesture search feature in my application, I've noticed that in the Gesture class docs (http://developer.android.com/ reference/android/gesture/Gesture.html) it reads: A user-defined gesture can be recognized by a GestureLibrary and a built-in alphabet gesture can be

[android-developers] Re: Crash on gesture recognize

2010-09-07 Thread marmor
wouldn't go that far yet. Best regards, Filip Havlicek 2010/9/5 marmor gaz...@gmail.com Hi, Thanks for the response. I've done all preparations as done by Google's example, including the gesture file in res/raw. 99% of the time everything works fine, onGesturePerformed

[android-developers] Re: Crash on gesture recognize

2010-09-05 Thread marmor
and addOnGesturePerformedListener? That should be enough, works fine for me in the example. Best regards, Filip Havlicek 2010/9/3 marmor gaz...@gmail.com I got a crash with the following stack trace: E/AndroidRuntime( 6709): Uncaught handler: thread main exiting due to uncaught

[android-developers] Crash on gesture recognize

2010-09-03 Thread marmor
I got a crash with the following stack trace: E/AndroidRuntime( 6709): Uncaught handler: thread main exiting due to uncaught exception E/AndroidRuntime( 6709): java.lang.IllegalArgumentException: Comparison method violates its general contract! E/AndroidRuntime( 6709): at

[android-developers] Re: Animate a single view in sequence

2010-08-26 Thread marmor
Doesn't anyone know about this, or experienced something similar? I'd really appreciate any help here... On Aug 18, 5:30 pm, marmor gaz...@gmail.com wrote: Hi, I would like to animate a view I have to appear like it was sliding off the screen to the left, and then sliding back to the screen

[android-developers] Animate a single view in sequence

2010-08-18 Thread marmor
Hi, I would like to animate a view I have to appear like it was sliding off the screen to the left, and then sliding back to the screen from the right. I've tried the following animation set: translate android:interpolator=@android:anim/ accelerate_decelerate_interpolator

[android-developers] Re: ListView problem - items are shrank when while scrolling the view

2010-07-15 Thread marmor
Hi, I've been having the same issue, using GridView with a BaseAdapter. My items are always the same type (a linearlayout of an image and a textview), so the above solution didn't help me. I get shrunk items every once in a while, after playing a few seconds scrolling up and down, and the

[android-developers] Re: Gridview loads in reverse on onConfigurationChanged

2010-02-28 Thread marmor
Hi, I've been experiencing this problem too, I don't rely on the order in which getView are called, but I do rely on the position. I noticed the *position* order (not call order) is reversed when I turn on the onscreen keyboard, and back again when I exit it. I've added a tag to the views i'm

[android-developers] Re: Passing keyevents to the next activity in the stack

2009-04-20 Thread marmor
.  Make sure you are setting it before you add your content view, and using the API to add flags instead of just directly poking the LayoutParams structure. On Sat, Apr 4, 2009 at 9:43 AM, marmor gaz...@gmail.com wrote: Hi, I'm trying to create an activity which would be on top of other

[android-developers] Re: Passing keyevents to the next activity in the stack

2009-04-15 Thread marmor
...@android.com wrote: Setting FLAG_NOT_FOCUSABLE on the window should probably work.  Make sure you are setting it before you add your content view, and using the API to add flags instead of just directly poking the LayoutParams structure. On Sat, Apr 4, 2009 at 9:43 AM, marmor gaz...@gmail.com

[android-developers] Passing keyevents to the next activity in the stack

2009-04-04 Thread marmor
Hi, I'm trying to create an activity which would be on top of other activities (a small dialog themed activity) and I want to get ALL key events to be ignored by my activity and handled normally by the activity beneath it. When I say all I mean the send, end and back keys too. Is this possible?

[android-developers] Re: Possible bug in Tabs?

2009-02-26 Thread marmor
that assumption there too (e.g. in CallLog module). I still think it's a bug. On Feb 26, 12:16 am, Marco Nelissen marc...@android.com wrote: On Wed, Feb 25, 2009 at 1:36 PM, marmor gaz...@gmail.com wrote: Hi, I think there's a bug involving using Tabs and Landscape/Portrait switching. Using

[android-developers] Possible bug in Tabs?

2009-02-25 Thread marmor
Hi, I think there's a bug involving using Tabs and Landscape/Portrait switching. Using an app with TabHost, tab_1 is shown, onCreate and then onResume are called. When switching to tab_2: onPause(1), onCreate(2), onResume(2) are called. When switching to landscape mode: onPause(2),

[android-developers] Re: Tab view exception

2009-02-25 Thread marmor
might be related to: http://groups.google.com/group/android-developers/browse_thread/thread/2c756d7ee906729f# On Feb 23, 8:07 am, Dilli dilliraomca...@gmail.com wrote: Hi all, I am implementing a application which contains tab view in tab view there is two tabs    ( two views)  1)

[android-developers] Setting a new WebViewClient

2009-02-22 Thread marmor
Hi, I'm trying to set my own progress bar to my WebView, I successfully tried creating my own class MyWebView which creates a progress bar in the constructor and then sets a new WebViewClient which has an overriden onPageFinished to terminate the progress bar. The problem is that using that new

[android-developers] Setting a new WebViewClient

2009-02-22 Thread marmor
Hi, I'm trying to set my own progress bar to my WebView, I successfully tried creating my own class MyWebView which creates a progress bar in the constructor and then sets a new WebViewClient which has an overriden onPageFinished to terminate the progress bar. The problem is that using that new