[android-developers] Re: Install % drop again?

2011-03-04 Thread Pent
Yeah, 64 to 52 a couple of weeks ago, slowly slipped down to 47 now. I wouldn't mind if it wasn't a disaster for ranking. Pent On Mar 4, 6:50 am, Zsolt Vasvari zvasv...@gmail.com wrote: My app went from 62% to 56% in one day  Say it all... -- You received this message because you are

[android-developers] Re: Check permissions

2011-03-04 Thread b_t
Hi, thank you for this suggestion A put the following line in the manifest of my content provider addon (MYPERMISSION is replaced by the correct value): permission android:name=MYPERMISSION android:protectionLevel=signature/ And I didn't put uses-permission tag for this permission in the main

[android-developers] Re: How to change AutoCompleteTextView dropdown background color ?

2011-03-04 Thread sat
Thanks , got what I was looking for , not exactly the same but I can change background image of dropdown using setDropDownBackgroundResource(); On Mar 4, 10:45 am, sat sathvikm...@gmail.com wrote: Hi, As the subject suggests , how to change background of AutoCompleteTextView dropdown. I can

Re: [android-developers] Market 2.3.2 : why is in-app billing API still returning RESULT_BILLING_UNAVAILABLE?

2011-03-04 Thread Kostya Vasilyev
This is the original story: http://techcrunch.com/2011/03/01/googles-new-in-app-payments-product-set-for-launch-in-may-2011/ which admits to being wrong about Android In-App Billing - rather, it's about *web-based*, in-app payments. And it's just pure speculation, too, trying to read between

Re: [android-developers] Use AndroidDebugBridge and ddmlib in my own desktop application

2011-03-04 Thread Panayotis Katsaloulis
On Mar 4, 2011, at 3:48 AM, Xavier Ducrohet wrote: Hmm this is strange. The Eclipse plug-in basically does that. There should be no other setup to do. Do you have the standalone DDMS running? Xav You mean the application DDMS? No, I don't. Now you said that, *after* failing to attach

Re: [android-developers] Re: Lock status bar

2011-03-04 Thread Marcin Orlowski
On 4 March 2011 01:18, lbendlin l...@bendlin.us wrote: The stock phone app does not lock on my N1. It does, when you are on a call. If you are browsing i.e. call log, or dialing then it works normally. -- Regards, Marcin -- You received this message because you are subscribed to the Google

Re: [android-developers] Re: Verify Service is real and not a spoof one.

2011-03-04 Thread Kostya Vasilyev
You can have some kind of challenge / response function in the service's interface. Now, if the service is local (android:exported=false) then it won't be available to other applications, so this whole issue doesn't apply - unless someone decompiles and rebuilds your application. But in that

Re: [android-developers] Market 2.3.2 : why is in-app billing API still returning RESULT_BILLING_UNAVAILABLE?

2011-03-04 Thread Nikolay Elenkov
On Fri, Mar 4, 2011 at 5:40 PM, Kostya Vasilyev kmans...@gmail.com wrote: This is the original story: http://techcrunch.com/2011/03/01/googles-new-in-app-payments-product-set-for-launch-in-may-2011/ which admits to being wrong about Android In-App Billing - rather, it's about *web-based*,

Re: [android-developers] Re: Install % drop again?

2011-03-04 Thread Marcin Orlowski
On 4 March 2011 09:03, Pent supp...@apps.dinglisch.net wrote: Yeah, 64 to 52 a couple of weeks ago, slowly slipped down to 47 now. I wouldn't mind if it wasn't a disaster for ranking. On Mar 4, 6:50 am, Zsolt Vasvari zvasv...@gmail.com wrote: My app went from 62% to 56% in one day  Say it

[android-developers] Re: Android 2.3 Causes memory intensive app to crash

2011-03-04 Thread neuron
I've also noticed this, it might be an app causing it. But it makes the system go into an unstable state. I've had google maps and the launcher effectivly stop working. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

Re: [android-developers] Re: Install % drop again?

2011-03-04 Thread Marcin Orlowski
On 4 March 2011 09:53, Marcin Orlowski webnet.andr...@gmail.com wrote: On 4 March 2011 09:03, Pent supp...@apps.dinglisch.net wrote: Yeah, 64 to 52 a couple of weeks ago, slowly slipped down to 47 now. I wouldn't mind if it wasn't a disaster for ranking. On Mar 4, 6:50 am, Zsolt Vasvari

Re: [android-developers] Re: Verify Service is real and not a spoof one.

2011-03-04 Thread Nikolay Elenkov
On Fri, Mar 4, 2011 at 5:49 PM, Kostya Vasilyev kmans...@gmail.com wrote: So keep this scenario in mind - either keep it really simple and just rely on local service, or implement measures against code changes, like obfuscation and signature checking. Assuming you signed both with the same

[android-developers] Can i manipulate JavaScript events or functions in WebView ?.

2011-03-04 Thread Santhosh Kumar
thanks regards, G.Santhosh Kumar +91 9966973790 -- 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 unsubscribe from this group, send email to

[android-developers] Dynamic code for views in layout

2011-03-04 Thread Jayanthi
Hi, I want to set 10 to 15 dynamic labels programmatically in layout without using xml files -- 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 unsubscribe from this

Fwd: [android-developers] redirct the an alert or replay to the device that send sms

2011-03-04 Thread vineeshkc
*can u give me any site or coderelated to this *? -- Forwarded message -- From: Marcin Orlowski webnet.andr...@gmail.com Date: Fri, Mar 4, 2011 at 2:16 PM Subject: Re: [android-developers] redirct the an alert or replay to the device that send sms To: vineeshkc

[android-developers] Re: Clear recent apps stack

2011-03-04 Thread Tom
Ok On 4 mar, 08:15, Doug beafd...@gmail.com wrote: On Mar 3, 2:03 am, Tom thomas.coz...@gmail.com wrote: I don't want to override it, just to clear apps list. The only way to clear it is to turn off the mobile? What you're seeing there is not really a stack.  It is just a list of

Re: [android-developers] Refreshing ListView data within an Activity every 5-10 seconds, which approach to take?

2011-03-04 Thread Kostya Vasilyev
It just depends on what kind of server you're dealing with. If it's your own, you could implement a simple push scheme by keeping the TCP/IP connection open after the initial data download, and having the server send new data over this connection. The client would just check every few seconds

Re: [android-developers] Market 2.3.2 : why is in-app billing API still returning RESULT_BILLING_UNAVAILABLE?

2011-03-04 Thread Kostya Vasilyev
04.03.2011 11:50, Nikolay Elenkov пишет: I agree it's pure speculation, but that's all we have. It does seem logical that it will be unveiled at Google I/O though. At any rate, it's a shame that there is no way to test it, so you can have it ready in your app and just deploy when Google finally

[android-developers] Re: Install % drop again?

2011-03-04 Thread Zsolt Vasvari
keep it (so your userbase will grow anyway), the download to installed ratio will go down. My observation is that is usually oscilate at 35%-40% for most apps with 50k and more downloads It was 62% yesterday -- it's 56% today... -- You received this message because you are subscribed to the

Re: [android-developers] redirct the an alert or replay to the device that send sms

2011-03-04 Thread Marcin Orlowski
On 4 March 2011 10:13, vineeshkc kcvine...@gmail.com wrote: can u give me  any site or code    related to this ? No, because you can easily google it for yourself. Do not be that lazy - it's your homework. android how to send sms and android how to receive sms shall do the trick -- Regards,

[android-developers] Send sms to multiple numbers in single call to sendTextMessage

2011-03-04 Thread Sarwar Erfan
Hi, Is there any way to send an SMS to multiple phone numbers? sendTextMesage in SmsManager takes single string.

Re: [android-developers] redirct the an alert or replay to the device that send sms

2011-03-04 Thread vineeshkc
ok sure i will do it take it has a challenge On Fri, Mar 4, 2011 at 2:59 PM, Marcin Orlowski webnet.andr...@gmail.comwrote: On 4 March 2011 10:13, vineeshkc kcvine...@gmail.com wrote: can u give me any site or coderelated to this ? No, because you can easily google it for yourself.

[android-developers] Re: Can Android widgets be homescreen aware?

2011-03-04 Thread babeinwoods
So when homescreen renders itself, it leaves no signals that apps/ widgets could catch and act on? On Mar 3, 8:02 pm, Justin Anderson magouyaw...@gmail.com wrote: AFAIK this is not possible On Thu, Mar 3, 2011 at 11:59 AM, babeinwoods vivek.pun...@gmail.com wrote: Do Android homescreen

Re: [android-developers] Re: Can Android widgets be homescreen aware?

2011-03-04 Thread Kostya Vasilyev
The interaction is the opposite - a widget provides a RemoteViews object which is used to render the widget without any further involvement by the widget provider. For some of the things you asked about, though, there are broadcast actions you can catch and update your widget as necessary

Re: [android-developers] Send sms to multiple numbers in single call to sendTextMessage

2011-03-04 Thread Marcin Orlowski
On 4 March 2011 10:35, Sarwar Erfan erfanonl...@gmail.com wrote: Is there any way to send an SMS to multiple phone numbers? No. Loop and send as many messages as many numbers you have. And if you planned to do some savings by hitting 10 receipients while paying for 1 message - it's not gonna

Re: [android-developers] Re: Install % drop again?

2011-03-04 Thread Marcin Orlowski
On 4 March 2011 10:26, Zsolt Vasvari zvasv...@gmail.com wrote: keep it (so your userbase will grow anyway), the download to installed ratio will go down. My observation is that is usually oscilate at 35%-40% for most apps with 50k and more downloads It was 62% yesterday -- it's 56% And how

[android-developers] Re: Try to implement coverflow animation using Gallery

2011-03-04 Thread monty
how do you get the image at the center when selected or scrolling and have its text displayed? On Mar 3, 7:56 pm, Justin Anderson magouyaw...@gmail.com wrote: It returns the text that should be displayed displayed for the item at the given position On Mar 3, 2011 4:27 AM, monty

[android-developers] Re: Lock status bar

2011-03-04 Thread Tom
@Kevin : I try to lock the status bar with your code. But it dosen't work. To edit the STATUS_BAR permission, the application must be signed with the key which used to sign the platform. - It's not possible to do it in an normal app... On 4 mar, 09:48, Marcin Orlowski webnet.andr...@gmail.com

[android-developers] Issue with Test class SingleLaunchActivityTestCase

2011-03-04 Thread cg-dev
Hi, We're developping a test activity using SingleLaunchActivityTestCase and JUnit on Android 2.3.3 We face the following issue : In JUnit view in eclipse we have the following function call order : testActivityTestCaseSetUpProperly() - this one is built in android. testA() testB() testC()

[android-developers] Re: Issue with Test class SingleLaunchActivityTestCase

2011-03-04 Thread cg-dev
I notice this in SingleLaunchActivityTestCase.java: @Override protected void tearDown() throws Exception { // If it is the last test case, call finish on the activity. sTestCaseCounter --; if (sTestCaseCounter == 1) { sActivity.finish(); }

[android-developers] Re: Can Android widgets be homescreen aware?

2011-03-04 Thread babeinwoods
Kostya, Please can you guide me as to the specific things on my list and the broadcast actions? Many thanks! On Mar 4, 9:52 am, Kostya Vasilyev kmans...@gmail.com wrote: The interaction is the opposite - a widget provides a RemoteViews object which is used to render the widget without any

[android-developers] Demo Applications

2011-03-04 Thread noob_boy
Hi, I am an idea for an App in which there is a view like facebook's wall. i.e. Profile picture, then username and then the wallPost contents. Profile picture, then username and then the wallPost contents. -- This is repeated many times. I know how to create listViews with space for the

[android-developers] Demo Applications

2011-03-04 Thread noob_boy
Hi, I am an idea for an App in which there is a view like facebook's wall. i.e. Profile picture, then username and then the wallPost contents. Profile picture, then username and then the wallPost contents. -- This is repeated many times. I know how to create listViews with space for the

Re: [android-developers] Re: Can Android widgets be homescreen aware?

2011-03-04 Thread Kostya Vasilyev
Unlocking the device: http://developer.android.com/reference/android/content/Intent.html#ACTION_USER_PRESENT Completing a phone call: http://developer.android.com/reference/android/telephony/TelephonyManager.html#ACTION_PHONE_STATE_CHANGED

Re: [android-developers] Demo Applications

2011-03-04 Thread Kostya Vasilyev
Official Facebook SDK for Android: https://github.com/facebook/facebook-android-sdk/ Facebook mobile devices forum: http://forum.developers.facebook.net/viewforum.php?id=9 -- Kostya 04.03.2011 14:47, noob_boy пишет: Hi, I am an idea for an App in which there is a view like facebook's wall.

Re: [android-developers] Fragments for Google Maps add on?

2011-03-04 Thread Mark Murphy
On Fri, Mar 4, 2011 at 12:37 AM, Dianne Hackborn hack...@android.com wrote: Sorry, nothing scheduled.  There is nothing preventing you from writing a little code to put MapView in your own fragment, is there? The bigger issue is that MapView has to be in a MapActivity, and there may be some

Re: [android-developers] sony xperia x10, power button not working for my apps

2011-03-04 Thread Rocky
hi any update On Thu, Mar 3, 2011 at 1:07 PM, RKJ (Android developer) rkjhaw1...@gmail.com wrote: Hi all, I develop a application, from application, if you press the power button to lock, and then unlock it, it will ask for password, it is working in HTC desire, motorola, but not working

[android-developers] SurfaceView is taking upto 10 seconds to be displayed!!!!

2011-03-04 Thread Pink
Hi, I am using ginger bread. I have two views in my xml file based on state i am setting one view as visible and another as gone. One of the two views has SurfaceView. Some times while moving between these two views the surfaceview is taking 10 seconds to be created and displayed to

[android-developers] How to use the static fragment library in legacy apps?

2011-03-04 Thread marlan
Hi, I'm trying to use the new fragment library in an 1.6 app. I have copied the FragmentLayout.java and the fragment_layout.xml from the Apidemos and the android-support-v4.jar in my project. Everything compiled but when I run the app I get an exception: java.lang.ClassCastException:

[android-developers] Re: SurfaceView is taking upto 10 seconds to be displayed!!!!

2011-03-04 Thread Pink
When i moving from other view to surface view, other view is being shown on top the surface view. On Mar 4, 5:22 pm, Pink sivareddy.j...@gmail.com wrote: Hi,    I am using ginger bread.    I have two views in my xml file based on state i am setting one view as visible and another as gone.

Re: [android-developers] Re: is javamail-android API work with other smtp server...

2011-03-04 Thread Roc Boronat
David, your message is an offtopic in this thread, but look at this slide: http://www.slideshare.net/rocboronat/hello-googlemaps Look for the 15th slide. And use your own .keystore instead of the debug debug.keystore. Bests, Roc Boronat http://rocboronat.net 2011/3/4 David Toledo

[android-developers] XMLSerializer problem appending

2011-03-04 Thread New Developer
I'm trying to save data to the sdcard. Currently I have a working if ( xmlFile.createNewFile() ) { //Creating a new XML File Thus count = 1 we are the first entry Appending = false; Write = new FileWriter(xmlFile, false);

[android-developers] sms compose activity

2011-03-04 Thread b_t
Hi, I can start SMS compose activity by Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(sms:#)); startActivity(intent); Is it possible to set the phone number or contact id? (the To field of the activity) Thanks, Tamás -- You received this message because you are

[android-developers] Cannot always launch DevicePolicyManager activity from another activity

2011-03-04 Thread cpphool
Hi, I have some strange problem. When I try to launch DevicePolicyManager activity from my main activity, it loads properly. However, when I make a notification, call QuestionActivity (if user clicks the notification), and then try to call DevicePolicyManager activity from QuestionActivity, I get

[android-developers] Re: Can Android widgets be homescreen aware?

2011-03-04 Thread babeinwoods
Thanks Kostya! On Mar 4, 11:55 am, Kostya Vasilyev kmans...@gmail.com wrote: Unlocking the device: http://developer.android.com/reference/android/content/Intent.html#AC... Completing a phone call: http://developer.android.com/reference/android/telephony/TelephonyMan...

[android-developers] Re: How to use the static fragment library in legacy apps?

2011-03-04 Thread marlan
Ok, I found the samples that uses the compatibility packages (FragmentDialogOrActivitySupport etc.). I changed the base class from FragmentLayout to FragmentLayout extends FragmentActivity and now it works. On 4 Mrz., 13:31, marlan marlan12...@googlemail.com wrote: Hi, I'm trying to use the

[android-developers] Re: Install % drop again?

2011-03-04 Thread Maps.Huge.Info (Maps API Guru)
My app Radar Now! has held steady at 55% over the last six months. That's with nearly 1.5 million downloads. I think everything, market statistics wise, is stable at the moment. -John Coryat -- You received this message because you are subscribed to the Google Groups Android Developers group.

Re: [android-developers] Re: Try to implement coverflow animation using Gallery

2011-03-04 Thread Justin Anderson
* how do you get the image at the center when selected or scrolling and have its text displayed?* I'm not sure I know what you mean... By definition a Gallery widget is A view that shows items in a center-locked, horizontally scrolling list. That is taken directly from the docs for the Gallery:

Re: [android-developers] Dynamic code for views in layout

2011-03-04 Thread Justin Anderson
Cool. Have fun. On Fri, Mar 4, 2011 at 2:02 AM, Jayanthi jaia...@gmail.com wrote: Hi, I want to set 10 to 15 dynamic labels programmatically in layout without using xml files -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

Re: [android-developers] help for Custom Expanded View

2011-03-04 Thread Justin Anderson
http://developer.android.com/resources/browser.html?tag=widgets On Thu, Mar 3, 2011 at 10:15 PM, Hitendrasinh Gohil hitendra.virtuei...@gmail.com wrote: hi justin, thankx for your reply. Now i have change my mind and want to add widget to my app. i have seen code of android native player.

[android-developers] Help Getting the Context

2011-03-04 Thread Jake Colman
I'm sure that this is a basic question that must have been answered a 100 times but I googled to no avail. Maybe I am going about this the wrong way. I am creating a class that is not an Activity or a Service. I need that class to be able to get a hold of, for example, the Location Manager. If

[android-developers] Re: Help Getting the Context

2011-03-04 Thread Hari Edo
One alternative is to look for, or create, a public singleton. A public singleton is a class that (1) ever only has one instance, and (2) that instance can be located from anywhere by means of a static method. One candidate for singleton status is Application -- it is a Context, and you expect

Re: [android-developers] Help Getting the Context

2011-03-04 Thread Marcin Orlowski
I would prefer not passing in the context to the class constructor.  Am I fundamentally misunderstanding this environment? You have to extend any Context existing context subclass to get valid Context and for obvious reason there's no static getContext() method Pick up a victim, dependig on

[android-developers] Re: Help Getting the Context

2011-03-04 Thread Jake Colman
Hari, Yes, I am familiar with singletons. As a mtter ofr fact, the class that I am creating is going to be a singleton - which is why I don't want to construct it with a context. So your suggestion is that I extend the Application class using the singleton pattern? And my extension saves

[android-developers] Re: How do you exclude sales to a specific country?

2011-03-04 Thread gcstang
Thank you for the link but, the layout has changed since that document lists a section for Publishing Options, Locations but it looks like that was removed and replaced with Content Rating and Pricing. If I remove the country from the pricing by unchecking is that suppose to do the same thing?

Re: [android-developers] Total install numbers

2011-03-04 Thread TreKing
On Wed, Mar 2, 2011 at 5:54 PM, Hendrik Greving fourhend...@gmail.comwrote: Hi! Why is there a big difference of Total installs from the publishers website and the number of people who actually bought my app? Because the Developer Console does not work. Use it as a *very* rough estimate, but

Re: [android-developers] errors while compiling WebKit with SVG ENABLE option.

2011-03-04 Thread TreKing
On Tue, Mar 1, 2011 at 4:18 AM, Illyoung Choi bugs...@gmail.com wrote: I downloaded entire platform codes and successfully compiled with default option without any modification. Try the platform or porting group for questions regarding building the source.

[android-developers] Re: Creating separate versions of apps for tablets

2011-03-04 Thread davemac
Use screen size and the supports-screens tag in your AndroidManifest.xml file. For tablets, you'd support xlarge. The Market will filter based on the device and your values. - dave On Mar 4, 1:21 am, Zsolt Vasvari zvasv...@gmail.com wrote: For now, you could set the targetSDK to 11 for the

[android-developers] Re: Cursor management issue with Honeycomb

2011-03-04 Thread Edi
I can confirm this as well. Removing the FilterQueryProvider doesn't help. So there might be other reasons for it. -- 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

Re: [android-developers] Refreshing ListView data within an Activity every 5-10 seconds, which approach to take?

2011-03-04 Thread Chris Stewart
Thanks for the replies. I should clarify some of the points you both mentioned. This server is not in my control at all, so any kind of push would be out of the question I suppose. I only want to pull in short increments if the user is actively using the Activity in question, not if the phone

[android-developers] Unable to use Fragmentation API with android compatibility package

2011-03-04 Thread Premier
In http://android-developers.blogspot.com/2011/03/fragments-for-all.html Xavier Ducrohet, Android SDK Tech Lead says Google releases an Android Compatibility Package by SDK Manager. I've installed it, but, how i can use it now? how can i integrate Android Compatibility Package in my project?

[android-developers] Moving an image in android

2011-03-04 Thread Raghav Sood
Hi everyone, I am very new to android and am trying to make a game that requires users to change the layout of a set of images to a new layout. If the new layout is correct they get promoted to the next level. I want to make the images dragable. Can anyone please tell me the code for dragging an

[android-developers] Re: How to use the static fragment library in legacy apps?

2011-03-04 Thread Premier
Where did you found example, please? I need it. Thank you. On 4 Mar, 15:04, marlan marlan12...@googlemail.com wrote: Ok, I found the samples that uses the compatibility packages (FragmentDialogOrActivitySupport etc.). I changed the base class from FragmentLayout to FragmentLayout extends

[android-developers] Re: Help Getting the Context

2011-03-04 Thread Hari Edo
On Mar 4, 9:54 am, Jake Colman col...@ppllc.com wrote: So your suggestion is that I extend the Application class using the singleton pattern?  And my extension saves 'this' (the context) as a static member of my singleton?  So now I have to see how to extend the application class. Yes,

[android-developers] Re: How to use the static fragment library in legacy apps?

2011-03-04 Thread marlan
under $android-sdk/extras/android/compatibility/v4/samples/ApiDemos/src/com/ example/android/apis/app/ all that extends FragmentActivity (FragmentLayoutSupport.java for example). On 4 Mrz., 16:32, Premier a.grum...@gmail.com wrote: Where did you found example, please? I need it. Thank you.

Re: [android-developers] Re: How do you exclude sales to a specific country?

2011-03-04 Thread TreKing
On Fri, Mar 4, 2011 at 9:00 AM, gcstang gcst...@gmail.com wrote: If I remove the country from the pricing by unchecking is that suppose to do the same thing? Yes. It's a terrible UI. That grouping is to select the countries it's available in, and *in addition*, allows you to set the price per

Re: [android-developers] Re: How to use the static fragment library in legacy apps?

2011-03-04 Thread Alessio Grumiro
Ok, but it must be executed on HoneyComb (look at default.properties target=android-11). I'm unable to lunch it on android 1.6. Is the library for android 1.6? 2011/3/4 marlan marlan12...@googlemail.com under $android-sdk/extras/android/compatibility/v4/samples/ApiDemos/src/com/

[android-developers] Re: SurfaceView is taking upto 10 seconds to be displayed!!!!

2011-03-04 Thread Pink
Any help please. On Mar 4, 5:34 pm, Pink sivareddy.j...@gmail.com wrote: When i moving from other view to surface view, other view is being shown on top the surface view. On Mar 4, 5:22 pm, Pink sivareddy.j...@gmail.com wrote: Hi,    I am using ginger bread.    I have two views in

[android-developers] is LVL server down?

2011-03-04 Thread Marcin Orlowski
Hi, Is it just me or anyone else is also having problems with LVL? No matter what I do, what account I use (dev or test) i always get RETRY response. App is unpublished at the moment, but I even tried to publish/unpublish in case this could matter. -- Regards, Marcin Orlowski -- You received

[android-developers] Re: How to use the static fragment library in legacy apps?

2011-03-04 Thread Premier
I always have below error 03-04 17:29:01.800: ERROR/AndroidRuntime(448): Caused by: java.lang.ClassNotFoundException: android.view.fragment in loader dalvik.system.PathClassLoader@44e83790 On 4 Mar, 16:52, Alessio Grumiro a.grum...@gmail.com wrote: Ok, but it must be executed on HoneyComb

[android-developers] Re: ListView update problem.

2011-03-04 Thread Streets Of Boston
Just before you call this.notifyDataSetChanged(), do you modify the arrays scripVector, closeVector and changeVector? BTW: I see a LOG message that examines the count of list-view childer (aView.getChildCount()). The number of children in the list-view (aView) is not the same as the number of

[android-developers] Re: XMLSerializer problem appending

2011-03-04 Thread Streets Of Boston
You append to the file, not the the ROOT element. -- 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 unsubscribe from this group, send email to

[android-developers] Re: How to use the static fragment library in legacy apps?

2011-03-04 Thread Dan Watling
To get the example working, I just had to manually copy the 'android- support-v4.jar' from '/extras/android/compatibility/v4' into the libs folder of the project as well as add it to the build path. Lessons I've learned in the past few hours while playing with this: - Ensure all of your

[android-developers] Re: Unable to use Fragmentation API with android compatibility package

2011-03-04 Thread Streets Of Boston
Have you tried copying the JAR that was download with that package into your Android project (and adding it to your Java library path)? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] is LVL server down?

2011-03-04 Thread TreKing
On Fri, Mar 4, 2011 at 10:24 AM, Marcin Orlowski webnet.andr...@gmail.comwrote: Is it just me or anyone else is also having problems with LVL?

Re: [android-developers] Re: How to use the static fragment library in legacy apps?

2011-03-04 Thread Dianne Hackborn
If it helps, ApiDemos has all of the same fragment samples as the ones originally released for HC, but using this library. You can run them from App/Fragment Support in the UI, and the code is the Fragment*Support.java files that are right next to the existing ones for the HC framework. Also be

Re: [android-developers] Re: Lock status bar

2011-03-04 Thread Dianne Hackborn
Yes applications can't do this. There is really no use in continuing a discussion about this. You can't do it. On Fri, Mar 4, 2011 at 2:30 AM, Tom thomas.coz...@gmail.com wrote: @Kevin : I try to lock the status bar with your code. But it dosen't work. To edit the STATUS_BAR permission,

[android-developers] Re: Help Getting the Context

2011-03-04 Thread Hari Edo
On Mar 4, 10:40 am, Hari Edo hari@gmail.com wrote: Yes, indeed.  Extend android.app.Application. ... Android constructs your class instead of the default.  It gets its own onCreate()/onDestroy() lifecycle that spans all activities. Clarification: Application has no onDestroy() and you

Re: [android-developers] Help Getting the Context

2011-03-04 Thread TreKing
On Fri, Mar 4, 2011 at 8:38 AM, Jake Colman col...@ppllc.com wrote: I am creating a class that is not an Activity or a Service. I need that class to be able to get a hold of, for example, the Location Manager. If I had a context I would call (LocationManger)context.getSystemService(...)

Re: [android-developers] Re: Lock status bar

2011-03-04 Thread TreKing
On Fri, Mar 4, 2011 at 11:33 AM, Dianne Hackborn hack...@android.comwrote: Yes applications can't do this. There is really no use in continuing a discussion about this. You can't do it. Dianne, do you know if there's a reason the stock Phone Dialer does do this? I'm very curious what the

Re: [android-developers] Re: Lock status bar

2011-03-04 Thread Dianne Hackborn
On Fri, Mar 4, 2011 at 9:57 AM, TreKing treking...@gmail.com wrote: On Fri, Mar 4, 2011 at 11:33 AM, Dianne Hackborn hack...@android.comwrote: Yes applications can't do this. There is really no use in continuing a discussion about this. You can't do it. Dianne, do you know if there's a

Re: [android-developers] Re: Lock status bar

2011-03-04 Thread Prakash Iyer
My 2c, if possible this should be removed when there is a proximity sensor. Really irritating not to be able to see that email or go back to nav using the notification when in speaker-phone/bluetooth mode. I know, not the forum, but... Thanks!! On Fri, Mar 4, 2011 at 1:06 PM, Dianne Hackborn

[android-developers] Phantom appwidgets

2011-03-04 Thread b_t
Hi, There are two ways to create phantom widgets: - try to add a new widget, configuration screen appears, canceling widget creation - try to add a new widget, configuration screen appears, save the widget, there is no place in home screen, canceling After these steps a new appwidget was

Re: [android-developers] Phantom appwidgets

2011-03-04 Thread Kostya Vasilyev
This is a bug in Launcher2. Actually, a few of them, appearing in various cases. Some of them got fixed (I forget which and when - you can check http://b.android.com), some others still aren't, it seems. In any case, them being fixed now doesn't help when running on an older version of

[android-developers] Re: How do you exclude sales to a specific country?

2011-03-04 Thread Nathan
This is basic, but what happens when I turn off a country? Suppose there are some people (though not many) who have already bought it? Suppose there are some people who have already downloaded the demo version? What will the experience be like for these people? I opened it up to all countries

[android-developers] Re: Can't communicate with NfcB tag

2011-03-04 Thread Paul Christensen
Ok, so I've learned additional, somewhat less than encouraging things. 1. I have a Discover Zip card, no idea what the ISO technology is, all I do know is the Nexus S does not respond at all to this card. 2. I have a Visa NfcB card that will connect as IsoDep, but not as NfcB. 3. I

[android-developers] Re: How to take advantage of dual-core processing

2011-03-04 Thread webmonkey
Can you determine the number of cores at all? On Mar 3, 10:29 pm, webmonkey webmonke...@gmail.com wrote: Let's say you have a task that is suitable for parallel processing. Can you detect the number of cores in Android and then make sure that the threads you create run on each separate core.

Re: [android-developers] Re: Lock status bar

2011-03-04 Thread TreKing
On Fri, Mar 4, 2011 at 12:06 PM, Dianne Hackborn hack...@android.comwrote: Well it was requested from the UI designers at some point. This may come from before there was a proximity sensor, to avoid accidentally pulling down the notifications with your cheek. Thanks for the info. I would

Re: [android-developers] Re: How do you exclude sales to a specific country?

2011-03-04 Thread TreKing
On Fri, Mar 4, 2011 at 12:29 PM, Nathan critter...@crittermap.com wrote: So I would like to turn some countries off. But what will happen to existing users? Does anyone know? I would guess they keep the app but will no longer find the app in the Market or be able to update. Just a guess,

Re: [android-developers] is LVL server down?

2011-03-04 Thread Marcin Orlowski
On 4 March 2011 18:12, TreKing treking...@gmail.com wrote: On Fri, Mar 4, 2011 at 10:24 AM, Marcin Orlowski webnet.andr...@gmail.com wrote: Is it just me or anyone else is also having problems with LVL?

[android-developers] Re: Help Getting the Context

2011-03-04 Thread Jonathan Foley
Umm...why not create the singleton with the ApplicationContext obtained from getApplicationContext()? It will always be valid, no matter what Activity or other class you are interacting with the singelton instance from. Alternatively, pass it to whatever static function you are calling to get

[android-developers] Re: Inserted Email addresses now are associated with Facebook

2011-03-04 Thread FOV
I still don't understand why did it get associated with Facebook. Even if for some reason I had a wrong ID, it would more than likely get associated with the wrong person in my contact list, but that was not the case. Also, when I go through the whole RawContact table, I don't see any entry that

[android-developers] Re: Verify Service is real and not a spoof one.

2011-03-04 Thread dnkoutso
Thank you all for the responses. This helps me enough :) -- 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 unsubscribe from this group, send email to

[android-developers] Re: Handling longpress/longclick in MapActivity.

2011-03-04 Thread loweroctave
Make an itemized overlay and apply it to the map. Inside that overlay class you can put in the standard context menu code to handle it. On Mar 4, 2:58 am, Neo Apostol neo.apos...@gmail.com wrote: Hi there, How can it be done? -- You received this message because you are subscribed to the

[android-developers] Re: How to take advantage of dual-core processing

2011-03-04 Thread fadden
On Mar 3, 1:29 pm, webmonkey webmonke...@gmail.com wrote: Let's say you have a task that is suitable for parallel processing. Can you detect the number of cores in Android and then make sure that the threads you create run on each separate core. If you have parallelizable tasks, just put them

[android-developers] Re: Announcing: The Android Developers Union

2011-03-04 Thread fadden
On Mar 3, 6:52 am, TreKing treking...@gmail.com wrote: My point is simply this: getting actual support or answers for legitimate issues relating to the Android Market is nigh impossible - regardless of the channel one goes through. Meanwhile a thread with the threat of being spammed gets the

Re: [android-developers] Managing WebView gestures

2011-03-04 Thread TreKing
On Tue, Mar 1, 2011 at 11:31 AM, Robin Eisenberg eisenbergro...@gmail.comwrote: Now I need it to scroll vertically, and fling to get_page(1) when flung right to left, etc... Any Ideas? Example code greatly appreciated. Thanx! Have you tried anything yet? I have not done flinging / gestures,

[android-developers] Re: How do you exclude sales to a specific country?

2011-03-04 Thread Nathan
Well, Taiwan has four cancelled orders and one valid order. I'll turn that one off first as an experiment. If that one person contacts me, I'll offer a refund. From Market comments, you'd think everyone hates my app in certain countries, but then I find that 50+ people from that country have

[android-developers] Re: Phantom appwidgets

2011-03-04 Thread b_t
Hi, yes I've already use this trick and it is good for the first case, when the widget hasn't been configured yet because of canceling it. But it doesn't work for the second case. In this case the widget is configured but can't be placed in the screen because of there were no place for it.

[android-developers] Re: Map tiles unnecessarily reloading when panning

2011-03-04 Thread Rmac
I have noticed the same effect after install 2.3.3 on a couple of apps using mapview... very disorienting to watch it while panning the map. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

  1   2   >