Re: [android-developers] Re: custom events in android

2011-07-05 Thread Sachin Dole
Yes, I am familiar with that mechanism. However, that is not like the event/eventhandler mechanism that is available in javascript/gwt. In the asynctask mechanism, the asynctask#postExecute runs on the UI thread and the asynctask needs to passed in a view if a specific view needs to be updated.

Re: [android-developers] Re: in-memory caching?

2011-07-05 Thread Sachin Dole
Thank you everyone! It sounds like there are quite a few ways of fetching and storing data. For caching though, it sounds like the platform is open just as java is. I will likely use a singleton class that holds static members to hold my data. Thank you again. On Tue, Jul 5, 2011 at 4:06 PM, Kees

[android-developers] question about onclick xml attribute for views

2011-07-04 Thread Sachin Dole
Hello! On the javadoc for the android:onclick xml attribute, it says the following. What does the part about being able to provide a reference to a resource mean? Do I have the ability to configure any class in my project to be a handler for onclick events or does it have to be a context

Re: [android-developers] String.split(regex) behaving funny

2011-07-02 Thread Sachin Dole
Thanks! On Jul 2, 2011 2:37 PM, Kostya Vasilyev kmans...@gmail.com wrote: The vertical bar has special meaning in Java regular expressions. Use split(\\|) instead. -- Kostya 02.07.2011 23:24, doles пишет: Hello Everybody, On 3.1, I have a string like this:

Re: [android-developers] Re: unable to set gps geo fix

2011-01-14 Thread Sachin Dole
Nope. I have not gotten ahead with that problem at all. Still have it. On Jan 14, 2011 7:37 AM, dan dany.yac...@gmail.com wrote: Hi i too have the same problem, i'm using eclipse helios sdk 2.3 windows XP please if you have any info on why this is happening. My application is a simple

Re: [android-developers] Re: source for SDK

2010-12-07 Thread Sachin Dole
so, it looks like i have to get Git and use git to download sources... and it looks like i might have to download all the 2.1 gigs and leave it to my IDE to figure out which exact file i need cuz i dont know which project i need amongst the many projects listed on http://android.git.kernel.org/.

Re: [android-developers] Re: source for SDK

2010-12-07 Thread Sachin Dole
benats guillaume.ben...@gmail.com wrote: Hi, you do not actually need the sources of Android to develop applications, Just the sdk...:http://developer.android.com/sdk/installing.html follow those steps to run it under eclipse! On Tue, Dec 7, 2010 at 11:24 AM, Sachin Dole sachin.d

Re: [android-developers] How to create executable file with linking static library?

2010-02-04 Thread Sachin Dole
On Feb 4, 2010 4:09 AM, bluestar bluestar8...@gmail.com wrote: Dear Sir: I have a static library: libhello.a and I want to create a executable file that link with this static library: libhello.a I put this static library under /out/target/product/generic/obj/STATIC_LIBRARIES/