[android-developers] suspend account

2013-04-02 Thread AC
Hi, Just before being suspended I used the new comments replay feature and i answered to someone who complained about an accidently inappropriate index. I answered her that i updated and fix the app (with new version) and i removed the problematic index. In response to my comment, Google

[android-developers] Re: getFragmentManager undefined

2013-02-07 Thread ac
please use getSupportFragmentManager() it is same as getFragmentManager().. On Wednesday, August 24, 2011 7:13:07 PM UTC+5:30, Aaron Visser wrote: I need to get the viewpager up and running for a project I'm working on. SDK 2.2, compatibility v4. It's all working, except...

[android-developers] Expansion File Best Programming Practices

2012-10-03 Thread AC Arcana
I've just recenty gotten into using expansion files for Android apps. In the example the app needs to know the final size of the expansion as well as the version number. This is annoying as heck for development and I have temporarily commented out the code responsible. I imagine for a release

Re: [android-developers] how to develop a web application in android?

2012-02-08 Thread Raji ac
you need to create a dynamic web application to act as server appln,and manage communication between client and server On Wed, Feb 8, 2012 at 3:31 PM, Pradeep predeeps...@gmail.com wrote: I need to develop a web application and deploy it using atjeews server. i probably need to create a .war

[android-developers] Audio Overlay

2011-11-22 Thread AC
I'm trying to combine two audio files. I want one file to play at the same time as another. An example would be to take lyrics and play them over beats. It is easy to play them at the same time, but I need to generate a MP3 that combines the two, one over the other, not one after the other. I know

[android-developers] ConcurrentModificationException from Handler

2011-01-17 Thread AC
I have an application with a service that downloads a set of job data from a remote web service. It uses this data to update a static HashMap of Job objects: public static HashMapString, Object jobs = new HashMapString, Object(); When it's finished, it sends a message to a handler in

[android-developers] Re: ConcurrentModificationException from Handler

2011-01-17 Thread AC
Perhaps I'm sending the message from the service to the activity incorrectly, and syncMarkers() ends up getting called from the service's thread? If so, would anyone have any advice on the correct way to send the message? -- You received this message because you are subscribed to the Google

[android-developers] Re: ConcurrentModificationException from Handler

2011-01-17 Thread AC
I'm afraid that didn't help. I now have: public class MapViewActivity extends MapActivity { private static MapString, Object markers = Collections.synchronizedMap( new HashMapString, Object() ); and the problem still occurs. -- You received this message because you are subscribed to the

[android-developers] Re: ConcurrentModificationException from Handler

2011-01-17 Thread AC
On Jan 17, 5:00 pm, Kostya Vasilyev kmans...@gmail.com wrote: 2 - As described in the link above, code that is trying to remove elements from a collection while iterating, for example: for (Item i : myHashMap.values()) {    if (some condition) {       myHashMap.remove(i.key);    } }

[android-developers] Re: ConcurrentModificationException from Handler

2011-01-17 Thread AC
After changing to iterator.remove() rather than removing from the Map, the problem went away. Thank you very much! -- 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@googlegroups.com To

[android-developers] Recommended way to update map overlay in background

2010-12-31 Thread AC
I'm working on an application with a number of activities, including a MapViewActivity. The map has markers drawn on it as overlays. The marker data is retrieved by regularly polling a web server, which returns a JSON document. The data can change from time to time, and when it does the map must

[android-developers] Re: Recommended way to update map overlay in background

2010-12-31 Thread AC
On Dec 31, 12:06 pm, TreKing treking...@gmail.com wrote: In this case you'd probably need that Service, binding to it as necessary when switching to the map. That's a good idea! I could download and store the marker data in the service, then have the MapViewActivity bind to it when the user

[android-developers] Exact criteria to view paid apps

2010-09-27 Thread AC
Does anyone know the exact criteria the market uses to decide which country you're in? Originally I had a UK SIM, credit card, billing address, and shipping address. I could view paid apps in the market. Then I changed to a Swiss SIM, credit card, billing address, and shipping address and lost

[android-developers] screen flickering in GLSurfaceView

2010-03-18 Thread ac
buffer leads to substantial flickering. Is there any way to eliminate flickering while still not clearing the screen at the beginning of each frame? Thanks a lot, ac -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] glBufferData crash

2010-03-17 Thread ac
call. If numVert is set to zero, then the crash doesn't occur. Any comments will be greatly appreciated. Thanks, ac -- 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@googlegroups.com