Re: [android-developers] Animate to new position - impossible?

2010-11-26 Thread Jason Van Anden
Got it - but ... Its not obvious what the: something to adjust your layout to cause your View to stick in the new spot. is. I am already using the AnimationListener to trigger post animation code - but I am stuck on how to make this actually happen. It would be great to have a snippet that sho

[android-developers] Animate to new position - impossible?

2010-11-24 Thread Jason Van Anden
I am trying to roll my own sliding drawer that can be opened 5%, 25% and 100%. When I animate my view to the new position, the animation moves, but when the animation is finished the view jumps back to its original location. Is it possible to animate a view to a new position or am I attempting to

Re: [android-developers] How i can control the Screen On/Off & Lock/Unlock in Donut( SDK 1.6)

2010-10-29 Thread Jason Van Anden
I am facing the same issue. Did you or does anyone else know the answer? J On Sun, Jan 3, 2010 at 9:43 PM, krekar wrote: > hi, all(& happy new year~! :D) > > I making an Alarm App. > > In my Alarm App, if user set the alarm, the alarm Dialog will be shown > at the set alarm time. > > but if de

[android-developers] Re: MediaRecorder Output Padded - How to Fix?

2010-10-28 Thread Jason Van Anden
Does anyone else have this issue when recording using MediaRecorder? I would like to understand if it might be something I am doing. thx On Wed, Oct 27, 2010 at 8:51 PM, Jason Van Anden wrote: > When I record audio with the MediaRecorder, I am consistently getting .65 > seconds of dead

[android-developers] MediaRecorder Output Padded - How to Fix?

2010-10-27 Thread Jason Van Anden
When I record audio with the MediaRecorder, I am consistently getting .65 seconds of dead space before the recording starts. It appears as if the file gets passed for some reason. Does anyone know why and better yet, how to eliminate this? j -- You received this message because you are subscri

Re: [android-developers] Re: Bitmaps and OutOfMemoryError: Best Practices needed

2010-09-07 Thread Jason Van Anden
I have seen the same issue - and I suspect a memory leak. What would be best way to track something like this down? j On Tue, Sep 7, 2010 at 3:08 PM, Romain Guy wrote: > It could also be a memory leak in your application. > > On Tue, Sep 7, 2010 at 12:06 PM, blahblah...@gmail.com > wrote: > >

[android-developers] Re: Problem Loading Images via Adapter on Zero Index

2010-07-19 Thread Jason Van Anden
ck to see if the image had already been instantiated a la: if ((convertView == null) && (imageViews[position] == null)) { Jason Van Anden http://www.bubblebeats.com On Mon, Jul 19, 2010 at 9:45 AM, Jason Van Anden wrote: > Hi All, > > I am attempting to load a series of imag

[android-developers] Problem Loading Images via Adapter on Zero Index

2010-07-19 Thread Jason Van Anden
Hi All, I am attempting to load a series of images into a 3x3 gridview. When the user refreshes the screen I want images to load into each imageview randomly. All of the images load properly - except index zero (topmost leftmost). In testing, this will work the first time I load if zero happens

Re: [android-developers] Re: Application Menu

2010-06-21 Thread Jason Van Anden
this may have been a red herring - wrong method may have been used. let's hold this thought for a moment. j On Mon, Jun 21, 2010 at 9:38 AM, Jason Van Anden wrote: > yes. tried. the weird thing is that the menu gets called and appears > fine. I get this response when an item is

Re: [android-developers] Re: Application Menu

2010-06-21 Thread Jason Van Anden
ass that is > super to your activities that need the menu? (I haven't done this for > menus, but I've done it for other Activity UI components that I wanted > to share among many activities.) > > - greg > > On Jun 21, 8:51 am, Jason Van Anden wrote: > > I have

Re: [android-developers] Application Menu

2010-06-21 Thread Jason Van Anden
I have the same question. If you were able to come up with a solution, please share! If not - does anyone else know the answer to this? j On Mon, Jul 27, 2009 at 1:19 PM, par wrote: > > Hi, > > Is it possible to attach Menu to an application rather than each > activity in the application? > >

[android-developers] Experience with GoAPK.com

2010-05-20 Thread Jason Van Anden
I received an email from goapk.com - offering to translate my apps for Chinese market. Has anyone here have an experience with this? I am curious about your experience. Thanks, Jason Van Anden http://www.BubbleBeats.com -- You received this message because you are subscribed to the Google

Re: [android-developers] Re: Android Market Anti-Piracy

2009-11-16 Thread Jason Van Anden
On Mon, Nov 16, 2009 at 4:17 PM, nEx.Software wrote: > If I don't believe an application should require Internet, I don't > install it. I hope that there are others who do the same. To require > internet permissions (with the current generic internet permission) on > an app which really does not n

[android-developers] Adjusting Dialog Size Question (ie: ColorPal)

2009-11-15 Thread Jason Van Anden
I just took a look at my app with a Droid - it works/looks super ... except for my color dialog - which is tiny compared to my G1.  I want to update the ColorPal code to accommodate different screen dimensions.  One way to do this would be to access the DisplayMetrics from the dialog ie: DisplayM

Re: [android-developers] Re: Make two buttons the same width?

2009-11-09 Thread Jason Van Anden
true that. j On Mon, Nov 9, 2009 at 3:15 AM, ko5tik wrote: > What about placing them into table layout? > then you shall be fine with fill_parent > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to this group, send email

Re: [android-developers] Re: Make two buttons the same width?

2009-11-08 Thread Jason Van Anden
rt list it will look funny (no harm in trying it if you want to see what happens). Super glad this was helpful. j On Sun, Nov 8, 2009 at 6:57 PM, Mark Wyszomierski wrote: > Excellent, thanks guys! > > On Nov 8, 5:33 pm, Jason Van Anden wrote: > > Followup from last post! I set t

Re: [android-developers] Make two buttons the same width?

2009-11-08 Thread Jason Van Anden
his example and over looking this. Jason On Sun, Nov 8, 2009 at 5:28 PM, Jason Van Anden wrote: > You want to avoid setting specific pixel dimensions especially because of > the various screen dimensions you may encounter. > > I think this layout will help get you where you need to go. It

Re: [android-developers] Make two buttons the same width?

2009-11-08 Thread Jason Van Anden
ill_parent" android:layout_height="fill_parent"> Jason Van Anden http://www.BubbleBeats.com On Sun, Nov 8, 2009 at 11:27 AM, Mark Murphy wrote: > Mark Wyszomierski wrote: > > Is there any sty

Re: [android-developers] Mystery Null Pointer Error - Seeking Opinions

2009-11-01 Thread Jason Van Anden
the Activity is coming back into the foreground. The menu button does not appear to have been called. Jason On Sun, Nov 1, 2009 at 11:25 AM, Jason Van Anden wrote: > Mark, > > Doh? How did I miss this? > > I was testing the state of an object within a service that had not yet b

Re: [android-developers] Mystery Null Pointer Error - Seeking Opinions

2009-11-01 Thread Jason Van Anden
Sat, Oct 31, 2009 at 1:33 PM, Mark Murphy wrote: > Jason Van Anden wrote: > > 10-31 14:12:03.667: ERROR/AndroidRuntime(7369): Uncaught handler: thread > > main exiting due to uncaught exception > > > > 10-31 14:12:04.077: ERROR/AndroidRuntime(7369): > > java.lang.

[android-developers] Mystery Null Pointer Error - Seeking Opinions

2009-10-31 Thread Jason Van Anden
oidRuntime(7369): at dalvik.system.NativeStart.main(Native Method) 10-31 14:12:04.517: DEBUG/dalvikvm(7369): GC freed 1736 objects / 111624 bytes in 248ms Thanks for the feedback in advance. Jason Van Anden http://www.BubbleBeats.com -- You received this message because you are subscribed to th

[android-developers] Re: Anyone else notice more frequent GC in 1.6?

2009-10-19 Thread Jason Van Anden
thread that there is more going on here so my assumptions may be wrong. At any rate - I am happy things are running better. Thanks for the improvement! Jason Van Anden http://www.bubblebeats.com On Mon, Oct 19, 2009 at 12:46 AM, Dianne Hackborn wrote: > Yeah, I don't know

[android-developers] Re: Anyone else notice more frequent GC in 1.6?

2009-10-18 Thread Jason Van Anden
gt; > On Sun, Oct 18, 2009 at 7:32 PM, Jason Van Anden < > jason.van.an...@gmail.com> wrote: > >> I am unsure if this is something I am noticing because my app is released >> or not, but it seems to me that 1.6 GC's smaller amounts a lot more >> frequently. It

[android-developers] Anyone else notice more frequent GC in 1.6?

2009-10-18 Thread Jason Van Anden
nyone else notice this? Jason Van Anden http://www.bubblebeats.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@goog

[android-developers] Re: Disable context menu not working ... bug?

2009-10-18 Thread Jason Van Anden
so it may confuse the user. Jason Van Anden http://www.bubblebeats.com http://www.twitter.com/bubblebeats On Sat, Oct 17, 2009 at 6:45 PM, Mark Murphy wrote: > > Jason Van Anden wrote: > > I am setting setEnabled = false for a Context Menu item. > > > > The item appears gr

[android-developers] Disable context menu not working ... bug?

2009-10-17 Thread Jason Van Anden
I am setting setEnabled = false for a Context Menu item. The item appears grayed out ... but I can still click on it. When I do, the menu closes. This does not seem to like the correct behavior to me. Is this a bug or a misunderstood feature? Anyone else experiencing this? Using 1.6 Jason -

[android-developers] Re: How did you localize your app?

2009-10-13 Thread Jason Van Anden
Super idea. Thanks, j On Tue, Oct 13, 2009 at 11:00 AM, Steve wrote: > > Look in the RES folder under platforms in the SDK. There's all of the > localized strings to support the default apps, so you can get things > like, yes, no, cancel, etc. > > On Oct 13, 5:54 am,

[android-developers] Re: How did you localize your app?

2009-10-13 Thread Jason Van Anden
Wouldn't these words apply to any app? Is this resource available to the public? Jason Van Anden http://www.bubblebeats.com On Mon, Oct 12, 2009 at 3:51 PM, Brian Conrad wrote: > > I haven't noticed if Android has done this but at least one other > non-phone platfor

[android-developers] Re: How did you localize your app?

2009-10-12 Thread Jason Van Anden
've just done a > very quick test, APK size with just english: 398KB, APK size with > english + 5 translations: 474KB. (For reference, the size of my > english/default 'values' folder is 45KB) > > Hope this helps! > > Charlie > > On Oct 12, 2:39 pm,

[android-developers] How did you localize your app?

2009-10-12 Thread Jason Van Anden
How have non-multilingual indy devs gone about translating their apps for different languages? I don't mean how do you localize ... I mean, how did you get translation done (paid, bartered, online translator, ...)? Did you notice an impact on downloads? Jason Van

[android-developers] Re: ADC2 Submission List

2009-10-07 Thread Jason Van Anden
+1 On Wed, Oct 7, 2009 at 4:40 AM, Michael wrote: > > Hi Tom, > > i received the following error: > There were problems with the following fields: >    * Url is too long (maximum is 75 characters) > But there's no URL input field visible. (Using Firefox 3.5.3 on WinXP) > > > On 6 Okt., 06:12, To

[android-developers] Re: Android Market 1.6

2009-10-04 Thread Jason Van Anden
Of course the other problem is that there are clearly devs gaming the system. In entertainment this is particularly a bummer. I wish I could switch categories BubbleBeats is surrounded by sexy girls and 'soundboards' ... both of which contain collections of content that seems to violate cop

[android-developers] Re: zipalign : could be done at distribution or installation time ?

2009-09-30 Thread Jason Van Anden
! I have 1.5 setup under Eclipse, did not deal with 1.6 yet. Advice appreciated. Thank You, Jason Van Anden www.bubblebeats.com On Mon, Sep 28, 2009 at 2:15 PM, Xavier Ducrohet wrote: > > On Mon, Sep 28, 2009 at 9:00 AM, Sheridan Hutchinson > wrote: >> I just cannot un

[android-developers] Re: Error generating final archive ... post Apple Software Update

2009-09-26 Thread Jason Van Anden
simply trying things I found mentioned here in the forum. j On Sat, Sep 26, 2009 at 1:30 PM, Jason Van Anden wrote: > Today, when I try to run my app from Eclipse, I get "Error generating > final archive: Debug certificate expired on 9/21/2009 6:11pm". > > I ran Software Updat

[android-developers] Error generating final archive ... post Apple Software Update

2009-09-26 Thread Jason Van Anden
my machine since I last worked on my app. I tried a few of the suggestions on the board - deleted debug.keystore and tried opening Eclipse using sudo. Neither did the trick. Anyone else? Suggestions super welcome. Thank You, Jason Van Anden www.bubbl

[android-developers] Re: Android Toast Duration

2009-09-20 Thread Jason Van Anden
ke or the second argument to the Dialog constructor, however you >> are creating the window. >> >> On Sat, Sep 19, 2009 at 11:26 AM, Jason Van Anden >> wrote: >>> >>> Dear Dianne et al, >>> >>> My feedback was meant as constructive criticism

[android-developers] Re: Android Toast Duration

2009-09-19 Thread Jason Van Anden
rite it in the XML. I added the style tag based upon this post: http://brainflush.wordpress.com/2009/03/15/understanding-android-themes-and-styles/ I sincerely hope that I am making a stupid, obvious mistake. Thank You, Jason On Sat, Sep 19, 2009 at 1:25 PM, Dianne Hackborn wrote: > On

[android-developers] Re: Android Toast Duration

2009-09-19 Thread Jason Van Anden
I am close to sorting this out ... I will post my code when I know I got it. There are a few threads on this topic that offer advice where an example would be more useful (IMHO). j On Sat, Sep 19, 2009 at 12:11 PM, Jason Van Anden wrote: > On Thu, Jul 23, 2009 at 6:34 PM, Dianne Hackb

[android-developers] Re: Android Toast Duration

2009-09-19 Thread Jason Van Anden
On Thu, Jul 23, 2009 at 6:34 PM, Dianne Hackborn wrote: > It sounds like you are abusing toasts. How about just showing your own > dialog that is set up to not get focus or be touchable? You can use this > background to make it look like a toast: > > http://developer.android.com/reference/andro

[android-developers] Re: ADC2 entries so far...

2009-09-14 Thread Jason Van Anden
You forgot BubbleBeats (in Entertainment)! http://www.bubblebeats.com Jason Van Anden On Sun, Sep 13, 2009 at 1:12 PM, Mobidev wrote: > > Its mid September and ADC team will soon launch the ADC 2 judging > application. So far its been a great job by the ADC team with sticking

[android-developers] Re: Linking Directly To An App In The Market?

2009-09-09 Thread Jason Van Anden
Was this ever resolved. I am looking to link to the Market from my webpage - ie: someone visits my webpage, I tell them to download from the market ... how exactly? Do I tell them to just do a search when they get there? Jason Van Anden http://www.bubblebeats.com On Tue, Feb 24, 2009 at 3:17

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

2009-09-08 Thread Jason Van Anden
first - there is a slight paradigm shift involved. Feedback appreciated. Thank You, Jason Van Anden http://www.bubblebeats.com On Tue, Sep 8, 2009 at 6:31 AM, Lee wrote: > > I posted earlier in this thread about my app Tasker. I've since had a > chance to > put up some mater

[android-developers] Re: Publishing Upgrades on Android Market ... Still Relevant?

2009-08-31 Thread Jason Van Anden
this question please? >> >> On Aug 29, 8:46 am, Jason Van Anden wrote: >> >> >> >> > Are the docs on the Developer site regarding Publishing out of date? >> > In other words, is the Market still considered Beta and do users >> > actually need

[android-developers] Publishing Upgrades on Android Market ... Still Relevant?

2009-08-29 Thread Jason Van Anden
Are the docs on the Developer site regarding Publishing out of date? In other words, is the Market still considered Beta and do users actually need a web service to compare their versions with so they can query the Market for updates? This is what is on the Android Developer site: http://develop

[android-developers] Re: Please, some layout help.

2009-08-25 Thread Jason Van Anden
I recommend using DroidDraw ...compare how it does what you are trying to do OR paste your code into it and try tweaking. http://www.droiddraw.org/ Jason Van Anden BubbleBeats, LLC http://www.bubblebeats.com On Tue, Aug 25, 2009 at 6:17 AM, Jiri wrote: > > Hello list, > > i think

[android-developers] Tracking Pointer Events in Android Browser

2009-08-07 Thread Jason Van Anden
work around (or determined that this was impossible and gave up)? Thank You, Jason Van Anden http://www.smileproject.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To po

[android-developers] Re: Unicode characters via resource element

2009-07-28 Thread Jason Van Anden
Is no one biting because I used "no avail" twice? On Mon, Jul 27, 2009 at 1:21 PM, Jason Van Anden wrote: > I posted this in beginner to no avail. Perhaps this is one for developers > ... > > I want to use unicode characters in a toast. I can do this via code. > &

[android-developers] Unicode characters via resource element

2009-07-27 Thread Jason Van Anden
no avail: No Title \u2639 If you know the answer - pls correct! Thank You, Jason Van Anden --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email

[android-developers] Re: SurfaceView speed optimization suggestions (or just kick it up to openGL)?

2009-07-23 Thread Jason Van Anden
On Jul 23, 2:16 pm, Jason Van Anden wrote: > > I am trying to optimize my graphics app. I have read the best practices > and > > have employed these and they have helped but, I am still getting hiccups. > I > > get the hiccups when more of the screen is drawn upon. I am l

[android-developers] SurfaceView speed optimization suggestions (or just kick it up to openGL)?

2009-07-23 Thread Jason Van Anden
bitmap before engaging my scrolling/easing and move the bitmap instead of adjusting the graphics. Feedback super appreciated. Thank You, Jason Van Anden http://www.smileproject.com --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[android-developers] Re: How to Speed up Animation

2009-07-22 Thread Jason Van Anden
I found the presentation super helpful as well ... after you watch it tho, refer to this ... http://developer.android.com/guide/practices/design/performance.html It covers most of the important points he makes. Jason Van Anden http://www.smileproject.com On Wed, Jul 22, 2009 at 12:03 PM, Roman

[android-developers] Re: Alternatives to Multitouch

2009-07-19 Thread Jason Van Anden
Thanks for the feedback. Jason On Sat, Jul 18, 2009 at 9:40 PM, John Smith wrote: > 2009/7/19 Jason Van Anden > >> I need to zoom-in/zoom-out for my app. Multitouch would be the most >> obvious way to go about this *sigh*. >> > > No it's not the most obviou

[android-developers] Alternatives to Multitouch

2009-07-18 Thread Jason Van Anden
alternative approaches. A one fingered zoom? Thanks, Jason Van Anden --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegro

[android-developers] Re: Attempting to pass data via NotificationManager - Seeking Help/Advice

2009-06-26 Thread Jason Van Anden
. I am a professional software engineer with around 20 years of experience. I was still stumped! A cookbook of examples using different launchModes may have helped me out in this case. Thank You, Jason Van Anden http://www.smileproject.com

[android-developers] Re: Attempting to pass data via NotificationManager - Seeking Help/Advice

2009-06-26 Thread Jason Van Anden
some additional details in case someone here does not go there ...from logcat ... Starting activity: Intent { comp={com.blah.blahs/com.blah.blahs.Blahs} (has extras) } << *** notice ... this is my intent called from the status bar *** startActivity called from non-Activity context; forcing Inte

[android-developers] Re: Attempting to pass data via NotificationManager - Seeking Help/Advice

2009-06-26 Thread Jason Van Anden
> If I understand you correctly, you just need to call Activity.getIntent > () within Activity.onCreate(). Thing is that onCreate does not get called. That activity starts, resume gets called. At the point when resume gets called the intent has changed from my intent with extras to the MAIN/LAU

[android-developers] Re: How can I give my paid app away for free to some users?

2009-06-18 Thread Jason Van Anden
+1 On Thu, Jun 18, 2009 at 1:52 PM, Anna PS wrote: > > Ah - that's a shame. Discount coupons would definitely be a nice > feature to have on the Market... > > On Jun 18, 12:06 am, Yuri Ammosov - Sadko Mobile > wrote: >> DO NOT REFUND. Refund UNINSTALLS the program. >> >> YA >> >> On Jun 17, 2:17

[android-developers] Re: Attempting to pass data via NotificationManager - Seeking Help/Advice

2009-06-17 Thread Jason Van Anden
ity gets called - fine - thing is that I want to have to get focus and then change based upon the info in extra. I cannot figure out where to receive the intent data in this situation. Thanks On Wed, Jun 17, 2009 at 9:18 PM, Jason Van Anden wrote: > I am stuck - or perhaps I am trying to do s

[android-developers] Attempting to pass data via NotificationManager - Seeking Help/Advice

2009-06-17 Thread Jason Van Anden
I am stuck - or perhaps I am trying to do something that can't be done. I would like to send an intent to the NotificationManager with data so that if it is clicked, the Activity that is called will do something with that data. I have tried a variety of things, the Activity does get called - but

[android-developers] Re: is upgrade to 1.5 safe???

2009-06-03 Thread Jason Van Anden
Now that I have been using it this AM - I must say ... sweet! The interface adjustments are great. j On Wed, Jun 3, 2009 at 11:39 AM, Mike Garcia wrote: > Yes.  I have had the OTA update now for over a week and it is working as I > would expect.  If you are developing in the Eclipse IDE and ha

[android-developers] Re: is upgrade to 1.5 safe???

2009-06-03 Thread Jason Van Anden
Just updated to it. So far so good. Jason Van Anden http://www.bubblebeats.com On Wed, Jun 3, 2009 at 11:29 AM, Mike Wolfson wrote: > > You will need to recompile your applications (make sure to switch the > project properties to target 1.5 release) before redeploying them to >

[android-developers] Re: onResume after NotificationShade Pulled

2009-05-24 Thread Jason Van Anden
Figured out something using onWindowFocusChanged. Don't know what I'd do without me! j On Sun, May 24, 2009 at 5:55 PM, Jason Van Anden wrote: > My activity does not seem to trigger onResume after the notification > shade is pulled down.  Anyone else have this problem (or had

[android-developers] onResume after NotificationShade Pulled

2009-05-24 Thread Jason Van Anden
My activity does not seem to trigger onResume after the notification shade is pulled down. Anyone else have this problem (or had and sorted out how to fix it)? Thanks, Jason Van Anden --~--~-~--~~~---~--~~ You received this message because you are subscribed to

[android-developers] Re: Difficulty Resuming SurfaceView

2009-04-26 Thread Jason Van Anden
this helps someone else! Jason Van Anden http://www.smileproject.com On Sun, Apr 26, 2009 at 7:30 AM, Jason Van Anden wrote: > Not to beat a dead horse ... but other suggestions regarding how to > deal with the mis-registered list view issue would be super > appreciated.  My app

[android-developers] Re: Copy protection & License key management

2009-04-26 Thread Jason Van Anden
Is the copy protection in 1.5 any more robust in 1.5? On Apr 26, 2009 11:38 AM, "Jean-Baptiste Queru" wrote: The issue (1) with turning copy protection on (or off) was in Android 1.0/1.1, and there's been no fix for it made on top of those versions. I believe that it is fixed in 1.5, which mean

[android-developers] Re: Difficulty Resuming SurfaceView

2009-04-26 Thread Jason Van Anden
in the blog entry). Thanks, Jason Van Anden http://www.smileproject.com On Sun, Apr 26, 2009 at 6:49 AM, Jason Van Anden wrote: > This looks like it does what I have been trying to do ... except that I have > no way of knowing if it will resolve the problem that occurs when I ca

[android-developers] Re: Difficulty Resuming SurfaceView

2009-04-26 Thread Jason Van Anden
This looks like it does what I have been trying to do ... except that I have no way of knowing if it will resolve the problem that occurs when I call the listview until I tinker with it. I have things running "well enough" except for this problem (thus I am inclined to continue with what I have an

[android-developers] Re: Seeing Double ListView

2009-04-25 Thread Jason Van Anden
... am I trying to do the impossible by using a SurfaceView and ListView in the same app? What it looks like to me is that the double buffering on the list is getting flummoxed. j On Sat, Apr 25, 2009 at 1:25 PM, Jason Van Anden wrote: > I am wondering if anyone else is encountering t

[android-developers] Seeing Double ListView

2009-04-25 Thread Jason Van Anden
SurfaceView version draw over themselves mis-registered when I scroll long lists quickly. If anyone out there has had a similar problem and/or has an idea what might be going on and/or has a suggestion as to how to fix this, please do! Thank You, Jason Van Anden

[android-developers] Re: Difficulty Resuming SurfaceView

2009-04-24 Thread Jason Van Anden
Perhaps this would be a better way to inspire feedback. Is it possible to pause and resume a view based upon SurfaceView? What would be the correct way to restart the view so that the thread can begin drawing again? On Fri, Apr 24, 2009 at 1:29 PM, Jason Van Anden wrote: > I create

[android-developers] Re: Difficulty Resuming SurfaceView

2009-04-24 Thread Jason Van Anden
I created a toy app that demos my problem ... the complete code can be found here: http://www.smileproject.com/SurfCodeExample.zip Feedback super appreciated. Here is the code from the activity and view only ... public class Surf extends Activity { /** Called when the activity is first cre

[android-developers] Re: More Than One Instance of Application

2009-04-10 Thread Jason Van Anden
I ran into this as well. Try adding this to the Activity tag ... android:launchMode="singleTask" Jason Van Anden http://www.smileproject.com On Thu, Apr 9, 2009 at 6:29 PM, Dianne Hackborn wrote: > It brings the currently running instance to the foreground. > > On Thu, Apr

[android-developers] Re: Buffering Background Image - Graphics Advice Sought

2009-03-30 Thread Jason Van Anden
Thanks, I will try this. My app has a lot of images drawn on a canvas, any of which can be moved and sized at any time by the user. They are in layers, and transparent, so that they can all be seen and manipulated. The graphics are circles at the moment. I tried running the app with a buffered

[android-developers] Re: Buffering Background Image - Graphics Advice Sought

2009-03-29 Thread Jason Van Anden
I sorted this out. i++ On Sun, Mar 29, 2009 at 12:31 PM, robotissues wrote: > > Still digging but I have example code. I am able to capture the > bitmap, but now the screen flickers. The idea here is that the > refresh_background flag gets raised when I need to hold the > background. Advice s

[android-developers] Re: Is it normal to play an audio during phone call?

2009-03-16 Thread Jason Van Anden
;, so I assumed he was talking about the 'Music' > application, which *does* pause. > > > On Mon, Mar 16, 2009 at 1:35 PM, Jason Van Anden > wrote: > > MediaPlayer keeps playing after I answer a call using my app. I was > > assuming that I was responsible for p

[android-developers] Re: Is it normal to play an audio during phone call?

2009-03-16 Thread Jason Van Anden
MediaPlayer keeps playing after I answer a call using my app. I was assuming that I was responsible for pausing it and was planning to figure out how this might be done (like, which intent I am listening for). Is the MP supposed to just pause automatically? i++ On Mon, Mar 16, 2009 at 4:08 PM,

[android-developers] Re: How to Thump? Name of Haptic Trigger.

2009-02-27 Thread Jason Van Anden
gt; > >> > On Fri, Feb 27, 2009 at 11:22 PM, Stoyan Damov >> > wrote: >> >> >> >> Surely Labyrinth (Lite - I don't have access to paid apps) requires >> >> Hardware controls/control vibrator. This permission is not that >> >> impor

[android-developers] Re: How to Thump? Name of Haptic Trigger.

2009-02-27 Thread Jason Van Anden
t; the vibration coming from? Also, it seems the harder the ball hits, > the stronger the (mini-)vibration. > > I would like to know what triggers this as well. > > On Feb 26, 11:50 pm, Jason Van Anden > wrote: > > Thank you for answering. I took some of the griping

[android-developers] Re: How to Thump? Name of Haptic Trigger.

2009-02-26 Thread Jason Van Anden
Thank you for answering. I took some of the griping personally about "why don't people take the minute to find ..." and/or choose the right forum. In this situation I do not know the syntax so its hard to find the info. That being said ... something physical actually does occur. Its the same t

[android-developers] Re: howto access music file properties?

2009-02-14 Thread Jason Van Anden
I sorted this out. MusicDroid example is a bit of a red herring. MusicStore is clearly the way to go! On another note ... can the Music App pre loaded with Android be accessed as a service? Essentially I would like to have the selected song pass back to my app. On Sat, Feb 14, 2009 at 11:36 AM

[android-developers] Re: Apple Granted Multitouch Patent

2009-01-27 Thread Jason Van Anden
/multitouchOverview.html Perhaps the deep pocketed one might be Palm ... here is a recent news article on some words between Apple and Palm on the IP ... http://venturebeat.com/2009/01/23/palm-will-defend-its-ip-too-says-former-apple-spokesperson/ Jason Van Anden www.smileproject.com On Tue, Jan 27, 2009 at