[android-developers] finger paint

2013-02-01 Thread Dilip Kumar Chaudhary
I'm drawing line and want that when lines match together then generate error.I have done some coding and this code is able to draw lines on touch but problem is that how to determine when line match.what should I do to solve this problem.Thanks -- *Thanks & Regards* Dilip Kumar Chaudhary My Linked

[android-developers] Re: My game has cloned/stolen, how has this happend?

2013-02-01 Thread Adam
I'd love the 100k+ hits accredited to the original. PS: If this is in the wrong group, feel free to move it. I just feel as if I need to do something about this blatant copying of my intellectual property. On Friday, 1 February 2013 18:41:46 UTC+11, Adam wrote: > > I released a game a few years

[android-developers] Re: My game has cloned/stolen, how has this happend?

2013-02-01 Thread Kostya Vasilyev
Happens all the time, I guess. Your best bet is to contact Play support with a DMCA notice. -- K On Friday, February 1, 2013 12:15:40 PM UTC+4, Adam wrote: > > I'd love the 100k+ hits accredited to the original. > > PS: If this is in the wrong group, feel free to move it. I just feel as if > I

Re: [android-developers] Re: My game has been cloned/stolen, how has this happend?

2013-02-01 Thread TreKing
On Fri, Feb 1, 2013 at 1:44 AM, Adam wrote: > What should I do? http://developer.android.com/support.html - TreKing - Chicago transit tracking ap

Re: [android-developers] finger paint

2013-02-01 Thread TreKing
On Fri, Feb 1, 2013 at 2:02 AM, Dilip Kumar Chaudhary < androiddili...@gmail.com> wrote: > what should I do to solve this problem. Use Google to find a line intersection algorithm. This has nothing to do with Android. -

[android-developers] Re: Dynamic Application Theme

2013-02-01 Thread Zsolt Vasvari
It's interesting how my app doesn't have this issue. I have a StartUp Activity, which, based on user preference, can start the app in various real activity. So, I guess, I effectively disabled the "preview" screen, by doing this? On Friday, February 1, 2013 3:43:03 PM UTC+8, Pent wrote: > > >

[android-developers] Efficient way to update one of the childs of a ExpandableListView group?

2013-02-01 Thread saex
I have a ExpandableListView with some groups, and each group haves only one child, with a string on it. I have a thread that get's some updated data and *each second* calls a handler that updates the string of one of the childs of the ExpandableListView and then calls this method to refresh

[android-developers] Re: My game has cloned/stolen, how has this happend?

2013-02-01 Thread Adam
Thanks for that. On Friday, 1 February 2013 19:20:01 UTC+11, Kostya Vasilyev wrote: > > Happens all the time, I guess. Your best bet is to contact Play support > with a DMCA notice. > > -- K > > On Friday, February 1, 2013 12:15:40 PM UTC+4, Adam wrote: >> >> I'd love the 100k+ hits accredited to

[android-developers] Re: can you debug?... here error: syntax error : insert "(" to complete expression

2013-02-01 Thread lselwd
problem fixed: I removed & reinserted whole function... On Wednesday, January 30, 2013 7:25:44 PM UTC+2, lselwd wrote: > > >> >> >>> private List fileNameList; // flag file names >> >> int[] sizeWordCountries = new int[9]; // 10 >> >> >> >> for (int i = 0; i < 9; i++) >> >

Re: [android-developers] Efficient way to update one of the childs of a ExpandableListView group?

2013-02-01 Thread TreKing
On Fri, Feb 1, 2013 at 2:36 AM, saex wrote: > think that it is because this call ((BaseExpandableListAdapter) > mAdapter).notifyDataSetChanged(); is updating all the ExpandableListView. > Don't *think*. Profile your code and determine what is really causing your slowness. Then fix that.

[android-developers] Re: Dynamic Application Theme

2013-02-01 Thread Kostya Vasilyev
Chrome (and Contacts) prevents its activity from being destroyed when he user presses Back (the normal code, in the framework, is to call finish then). If you did the same, the mismatched animation won't happen so often, since when resuming an existing activity, the system will animate its actu

[android-developers] Disable Triple Buffering In 4.1?

2013-02-01 Thread muleskinner
Hi, Is there any way to disable Jelly Bean triple buffering from within my app? It's causing me issues and the easiest way to fix would be to disable it... Help much appreciated! cheers -- -- You received this message because you are subscribed to the Google Groups "Android Developers" group

[android-developers] How to lock android phone with pin from code??? (screen lock)

2013-02-01 Thread Remo
Hi Everyone, How to do screen lock with PIN number from code??? Can anyone help me. Thx on advance Thanks, Remo -- -- 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

Re: [android-developers] Efficient way to update one of the childs of a ExpandableListView group?

2013-02-01 Thread Kostya Vasilyev
While TreKing's advice to profile is of course excellent... ...rebuilding the entire {expandable} list view just to update one item is more work that necessary. When performance is important, you can walk the list of visible item views, find the one you need to update, and do it right there. You

Re: [android-developers] Efficient way to update one of the childs of a ExpandableListView group?

2013-02-01 Thread saex
OK, i can get the childs View with: el.getChildAt(1); el.getChildAt(2); but... what shouild i do to notify these views that they must reload their content from the adapter? El viernes, 1 de febrero de 2013 11:38:42 UTC+1, Kostya Vasilyev escribió: > > While TreKing's advice to profile is of cou

[android-developers] Re: html parsing issuess

2013-02-01 Thread Bost
hallo, it seems, that the variable responseBody is not declared. Regards Bost > > > > > -- -- 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

Re: [android-developers] Efficient way to update one of the childs of a ExpandableListView group?

2013-02-01 Thread Kostya Vasilyev
Might look something like this: final int nFirst = mAccountListView.getFirstVisiblePosition(); final int nLast = mAccountListView.getLastVisiblePosition(); for (int position = nFirst; position <= nLast; ++position) { View itemView = mAccountListView.getChildAt(position - nFirst); As for asking t

Re: [android-developers] Efficient way to update one of the childs of a ExpandableListView group?

2013-02-01 Thread saex
i know how to get the views, the problems is that i can't reach the way to tell the adapter to update the content of only these views... did you know? thanks El viernes, 1 de febrero de 2013 12:37:51 UTC+1, Kostya Vasilyev escribió: > > Might look something like this: > > final int nFirst = mAcc

Re: [android-developers] Efficient way to update one of the childs of a ExpandableListView group?

2013-02-01 Thread Kostya Vasilyev
Is that it? >> You could call the adapter's getView, making sure to pass the existing view as the "convertView". << -- K 2013/2/1 saex > i know how to get the views, the problems is that i can't reach the way to > tell the adapter to update the content of only these views... did you know? >

Re: [android-developers] Efficient way to update one of the childs of a ExpandableListView group?

2013-02-01 Thread saex
i didn't understand you, the adapter doesn't have a getView method El viernes, 1 de febrero de 2013 12:50:46 UTC+1, Kostya Vasilyev escribió: > > Is that it? > > >> > > You could call the adapter's getView, making sure to pass the existing > view as the "convertView". > > << > > -- K > > 2013/2/

Re: [android-developers] Efficient way to update one of the childs of a ExpandableListView group?

2013-02-01 Thread Kostya Vasilyev
Urm, for an expandable list view -- getChildView or getGroupView. -- K 2013/2/1 saex > i didn't understand you, the adapter doesn't have a getView method > > El viernes, 1 de febrero de 2013 12:50:46 UTC+1, Kostya Vasilyev escribió: >> >> Is that it? >> >> >> >> >> You could call the adapter's

Re: [android-developers] Re: Prevent sms sending

2013-02-01 Thread Lucas Diego
Thanks Kris On Thu, Jan 31, 2013 at 6:35 PM, Kristopher Micinski wrote: > (Though you can apparently still watch the incoming call log and kill > calls, I see this as a bug in the Android framework, but you're free > to use as you wish...) > > kris > > On Thu, Jan 31, 2013 at 4:30 PM, Kristophe

Re: [android-developers] How to lock android phone with pin from code??? (screen lock)

2013-02-01 Thread Παύλος-Πέτρος Τουρνάρης
http://stackoverflow.com/questions/5167958/lock-the-screen-programmatically-on-android check it! On Fri, Feb 1, 2013 at 12:02 PM, Remo wrote: > Hi Everyone, > > How to do screen lock with PIN number from code??? > > Can anyone help me. Thx on advance > > Thanks, > Remo > > -- > -- > You receiv

[android-developers] Re: Dynamic Application Theme

2013-02-01 Thread Pent
> I have a StartUp Activity, which, based on user preference, can start the > app in various real activity.  So, I guess, I effectively disabled the > "preview" screen, by doing this? If animations are enabled in system prefs, you should get an animation between the startup activity and the subact

[android-developers] Re: Dynamic Application Theme

2013-02-01 Thread Pent
> Chrome (and Contacts) prevents its activity from being destroyed when he > user presses Back (the normal code, in the framework, is to call finish > then). > > If you did the same, the mismatched animation won't happen so often, since > when resuming an existing activity, the system will animate

[android-developers] android using url.openstream isn't throwing IOException if no internet connection. Why?

2013-02-01 Thread Narendra Singh Rathore
Hi all, I am using url.openstream for requesting on to server. In case no internet connection while this, I want data to be stored in database, and hence doing the storage in catch clause of IOException, but instead of being caught here, it just hangs on url.openstream. I even waited for a m

[android-developers] is Google going to ship Chrome as a default browser for next OS release

2013-02-01 Thread H
Probably unlikely to "replace" the Stock Browser in AOSP Android - Chrome is dependant on the Google APIs, so if it replaced the browser then there wouldn't be a browser on AOSP Android. But on Google licensed devices, there's no reason to not remove the Stock Browser. However Chrome doesn't pro

Re: [android-developers] Digest for android-developers@googlegroups.com - 25 Messages in 11 Topics

2013-02-01 Thread Tobias Lindberg
-- -- 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+unsubscr...@googlegroups.com For more options, vi

[android-developers]

2013-02-01 Thread Tobias Lindberg
-- -- 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+unsubscr...@googlegroups.com For more options, vi

[android-developers] Re: Dynamic Application Theme

2013-02-01 Thread Pent
Progress! Don't know what I changed but managed to prevent the between startup and main activity animation. So a startup activity works, but only if there's a delay before I call the main activity. Here's the code: public class FrontDoor extends MyActivity { @Override public void onCr

[android-developers] LoaderManager OnLoadFinished();

2013-02-01 Thread Lars
Right now I am experiencing weird behavior from the loadermanager in my app. I got 3 sherlocklistfragments in my app under tabs. when i start up the app it works great the loadermanager does exactly what it should do but when i change the orientation of my app the loadermanager's onloadfinished g

[android-developers] Re: android using url.openstream isn't throwing IOException if no internet connection. Why?

2013-02-01 Thread skink
Narendra Singh Rathore wrote: > Hi all, I am using url.openstream for requesting on to server. In case no > internet connection while this, I want data to be stored in database, and > hence doing the storage in catch clause of IOException, but instead of > being caught here, it just hangs on url.

Re: [android-developers] Re: android using url.openstream isn't throwing IOException if no internet connection. Why?

2013-02-01 Thread vaibs malviya
use ConnectivityManager before using url.openstream if net is available so call url otherwise from local database . On Fri, Feb 1, 2013 at 8:05 PM, skink wrote: > > > Narendra Singh Rathore wrote: > > Hi all, I am using url.openstream for requesting on to server. In case no > > internet connect

Re: [android-developers] Efficient way to update one of the childs of a ExpandableListView group?

2013-02-01 Thread saex
arg... you didn't understand me or i can't understand you getChildView and getGroupView are from the ExpandableListView, but we are talking about the Adapter, i dont know how to update only the view of only the two childs i want to update, please, can you give me code example of what you want t

[android-developers] Re: asynctask vs. FragmentRetainInstance.java in API demo

2013-02-01 Thread Streets Of Boston
After your Fragment, the one without a UI, has started the AsyncTask, i.e. after the AsyncTask's 'execute' method has been called, it can stop it by calling 'cancel' on it. task.execute(...); ... ... And on some event, (Fragment's onDestroy for example), you just call. task.cancel(t

Re: [android-developers] Efficient way to update one of the childs of a ExpandableListView group?

2013-02-01 Thread skink
saex wrote: > arg... you didn't understand me or i can't understand you > > getChildView and getGroupView are from the ExpandableListView, but we are > talking about the Adapter, no, see http://developer.android.com/reference/android/widget/ExpandableListAdapter.html pskink -- -- You receiv

[android-developers] Re: html parsing issuess

2013-02-01 Thread bob
It looks like there is missing code here: *webview.loadUrl("http://www.indianrail.gov.in/pnr_Enq.html";);* * * *-- missing code --* * * ** *Parser parser=Parser.createParser(responseBody, HTTP.UTF_8);* You need to declare responseBody and assign it the contents of that UR

[android-developers] App

2013-02-01 Thread dany varghese
can suggest a site to download the program code for an OCR app(Text extraction from Image) . -- -- 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 th

[android-developers] Re: My game has cloned/stolen, how has this happend?

2013-02-01 Thread bob
It seems that both of your games are probably a violation of a Milton Bradley trademark. You might want to just pull yours down unless you actually got permission from Milton Bradley. On Friday, February 1, 2013 1:41:46 AM UTC-6, Adam wrote: > > I released a game a few years ago with litt

[android-developers] Re: can you debug?... here error: syntax error : insert "(" to complete expression

2013-02-01 Thread bob
Why would that have fixed the problem? On Friday, February 1, 2013 2:54:14 AM UTC-6, lselwd wrote: > > problem fixed: I removed & reinserted whole function... > > On Wednesday, January 30, 2013 7:25:44 PM UTC+2, lselwd wrote: >> >> >>> >>> private List fileNameList; // flag file n

Re: [android-developers] is Google going to ship Chrome as a default browser for next OS release

2013-02-01 Thread Kristopher Micinski
This surprises me, are the user's bookmarks accessible in a public provider? I had been under the impression that this was removed (always throws a `SecurityException`) since 2.2. kris On Fri, Feb 1, 2013 at 8:42 AM, H wrote: > Probably unlikely to "replace" the Stock Browser in AOSP Android -

Re: [android-developers] Disable Triple Buffering In 4.1?

2013-02-01 Thread Romain Guy
No it cannot be disabled. What issue is it causing? On Feb 1, 2013 1:16 AM, "muleskinner" wrote: > Hi, > > Is there any way to disable Jelly Bean triple buffering from within my > app? It's causing me issues and the easiest way to fix would be to disable > it... > > Help much appreciated! > > che

Re: [android-developers] Efficient way to update one of the childs of a ExpandableListView group?

2013-02-01 Thread saex
I see, but i can't understand how to do what i need to do... El viernes, 1 de febrero de 2013 16:03:17 UTC+1, skink escribió: > > > > saex wrote: > > arg... you didn't understand me or i can't understand you > > > > getChildView and getGroupView are from the ExpandableListView, but we > are >

Re: [android-developers] Efficient way to update one of the childs of a ExpandableListView group?

2013-02-01 Thread skink
saex wrote: > I see, but i can't understand how to do what i need to do... > > just call getChildView pskink -- -- 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] Re: can you debug?... here error: syntax error : insert "(" to complete expression

2013-02-01 Thread Kostya Vasilyev
Sometimes Java compile errors stick after they've been corrected. I just saw this today (Eclipse 3.7.2, latest ADT). Not sure if it's an issue with Eclipse or ADT. -- K 2013/2/1 bob > Why would that have fixed the problem? > > > > > On Friday, February 1, 2013 2:54:14 AM UTC-6, lselwd wrote: >>

Re: [android-developers] Efficient way to update one of the childs of a ExpandableListView group?

2013-02-01 Thread saex
argg you didn't understand me. I KNOW HOW TO GET THE VIEW, it is not the problem, read the full post please El viernes, 1 de febrero de 2013 17:10:53 UTC+1, skink escribió: > > > > saex wrote: > > I see, but i can't understand how to do what i need to do... > > > > > > just call getCh

Re: [android-developers] Efficient way to update one of the childs of a ExpandableListView group?

2013-02-01 Thread skink
saex wrote: > argg you didn't understand me. I KNOW HOW TO GET THE VIEW, it is > not the problem, read the full post please > > i did read the full thread and still i think you should call getChildView as Kostya suggested pskink -- -- You received this message because you are subscr

[android-developers] Re: Android Geocoder yields inaccurate results only with MY package name

2013-02-01 Thread Franklin
This problem still bugs the hell out of me. I have written an obscure workaround that doesn't work 100% of the time, and it really bugs the hell out of my users (I have about 500,000 active users) as well. -- -- You received this message because you are subscribed to the Google Groups "Android

Re: [android-developers] Efficient way to update one of the childs of a ExpandableListView group?

2013-02-01 Thread Kostya Vasilyev
And if you can't call getChildView, just copy the code from there to where you need it. (Can't believe I wrote "copy the code"... will my developer license be revoked now?) -- K 2013/2/1 skink > > > saex wrote: > > argg you didn't understand me. I KNOW HOW TO GET THE VIEW, it is > > no

[android-developers] Canvas efficiency

2013-02-01 Thread dashman
If i'm drawing bitmaps (multiple small ones) to my canvas, should i check whether it's within the cliprect or will the system do it automatically for me. i.e. i do not want android to draw bitmaps that will not be seen. which is more efficient. also - does this apply to all canvas operations.

[android-developers] Sharp drop in downloads jan 31?

2013-02-01 Thread Bram Stolk
Hi there, Did anyone else see a sharp drop in downloads on jan 31? I was hoping it could be related to Google's transition to different pay out schedule this month. If not, my app started to do not as good anymore. It went down roughly 25% between wed and thu. Normally, I only see sudden drops

[android-developers] Re: Android Geocoder yields inaccurate results only with MY package name

2013-02-01 Thread Nobu Games
Maybe you should provide an alternative "driver" based on a service like geonames.org. Their address database is free to use (with content attribution). Only downside is that they have a daily usage limit which must not be exceeded unless you pay for some premium access. However, if that proble

Re: [android-developers] Canvas efficiency

2013-02-01 Thread Romain Guy
The system will do it for you but if it's easy for you to do it you should do it as well. On Fri, Feb 1, 2013 at 9:30 AM, dashman wrote: > > If i'm drawing bitmaps (multiple small ones) to my canvas, > > should i check whether it's within the cliprect or will the system > do it automatically fo

[android-developers] Re: AppWidgetProvider onDeleted vs onDisabled

2013-02-01 Thread Jake Colman
> "T" == TreKing writes: T> On Tue, Jan 29, 2013 at 10:51 AM, Jake Colman wrote: >> I am finding that, on occasion, after I delete my widget from my >> homescreen the underlying Service that I use is still receiving >> alarms and doing work. I do all my clean-up in onDisabled

Re: [android-developers] Efficient way to update one of the childs of a ExpandableListView group?

2013-02-01 Thread saex
What? where should i put that view? i dont understand you... the objective is to update one item instead of rebuilding the entire {expandable} list view. So... what should i do with that view? how can i make that view to be refreshed when i want? i'm stuck El viernes, 1 de febrero de 2013 18:

Re: [android-developers] Efficient way to update one of the childs of a ExpandableListView group?

2013-02-01 Thread skink
saex wrote: > What? where should i put that view? i dont understand you... > > the objective is to update one item instead of rebuilding the entire > {expandable} list view. > > So... what should i do with that view? how can i make that view to be > refreshed when i want? > > its simple: if your

[android-developers] Re: AppWidgetProvider onDeleted vs onDisabled

2013-02-01 Thread Kostya Vasilyev
There was a bug in Android 2.* where doing what you described (canceling the widget config activity) caused the Android framework (or the Launcher?) to still save the assigned widget id. Another case for ghost widget IDs was when there was not enough room on the home screen. On one of my devic

[android-developers] Re: App

2013-02-01 Thread RichardC
http://code.google.com/hosting/search?q=OCR&btn=Search+Projects On Friday, February 1, 2013 3:24:33 PM UTC, dany varghese wrote: > > can suggest a site to download the program code for an OCR app(Text > extraction from Image) . > -- -- You received this message because you are subscribed to

Re: [android-developers] Efficient way to update one of the childs of a ExpandableListView group?

2013-02-01 Thread Nobu Games
Your Adapter has these getChildView and getGroupView

Re: [android-developers] Re: AppWidgetProvider onDeleted vs onDisabled

2013-02-01 Thread TreKing
On Fri, Feb 1, 2013 at 1:31 PM, Jake Colman wrote: > 1) Press on homescreen to install the widget > 2) Configuration activity is displayed. Press back arrow to exit. > 3) On CM7 (my test phone) the "resize widget" activity is displayed. > I think you may have a bad build of CM. I have CM7 as we

Re: [android-developers] Re: AppWidgetProvider onDeleted vs onDisabled

2013-02-01 Thread Kostya Vasilyev
On Saturday, February 2, 2013 12:10:54 AM UTC+4, TreKing wrote: > > I checked the bug database and I think you're suffering from this: > > http://code.google.com/p/android/issues/detail?id=2539 > > According to the last comment on that page, it's still not fixed in 4.2? And that comment is corre

[android-developers] eclipse logcat problem

2013-02-01 Thread dashman
sometimes eclipse logcat stops working and i have to restart both eclipse and the emulator. any better way? -- -- 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 uns

[android-developers] Re: My game has cloned/stolen, how has this happend?

2013-02-01 Thread Adam
You're probably right, and the the irony of me complaining about it isn't lost on me. I'm more than happy to take the app down, I've made all of $16 on the paid version (which is different to the MB classic) and it cost me $25 to publish it. So I'm down $9. It was just a little project I did to

[android-developers] Re: eclipse logcat problem

2013-02-01 Thread Nobu Games
For me the following usually works: - Clicking device / emulator entry in device list - Clearing log cat - Restarting ADB and clicking device in device list If you're developing with a real device the problem can be the device itself as well. One quick workaround is deactivating USB debugging in

[android-developers] startActivity

2013-02-01 Thread bob
Can someone help me understand why the startActivity method is in the Activity class? I really don't feel like it clearly belongs in any class. I basically want to call the function when I don't necessarily have a handle to an Activity object yet. -- -- You received this message because you

[android-developers] Unexpected Action Bar Behavior

2013-02-01 Thread Doug Gordon
I've just updated my app to use an ActionBar with navigation tabs and the splitActionBarWhenNarrow option, integrated with ViewPager to allow swiping between tabs. The home icon and title in the bar are disabled. It is functionally working on all configurations, but in one case it doesn't act

Re: [android-developers] Re: My game has cloned/stolen, how has this happend?

2013-02-01 Thread TreKing
On Fri, Feb 1, 2013 at 2:51 PM, Adam wrote: > Also, can you actually remove aps yourself form from the developer console > of Play? > No. Once you publish, there is no going back. Hell, you're stuck with apps in your console even if you so much as create an empty test space. Be very careful. --

Re: [android-developers] startActivity

2013-02-01 Thread TreKing
On Fri, Feb 1, 2013 at 3:22 PM, bob wrote: > Can someone help me understand why the startActivity method is in the > Activity class? > > I really don't feel like it clearly belongs in any class. > > I basically want to call the function when I don't necessarily have a > handle to an Activity obje

[android-developers] Re: startActivity

2013-02-01 Thread Nobu Games
Think of an Android app as a website. A single HTML page is an Activity. And "startActivity" is like a link to another HTML page / acitvity. Since every page / activity needs links to navigate the whole website / app you also need the startActivity method in the Activity class. On Friday, Febr

Re: [android-developers] eclipse logcat problem

2013-02-01 Thread Kostya Vasilyev
Better way -- running "adb logcat -v time" in a command line window / terminal of your operating system :) 2013/2/2 dashman > sometimes eclipse logcat stops working and i have to restart > both eclipse and the emulator. > > any better way? > > -- > -- > You received this message because you are

Re: [android-developers] Re: My game has cloned/stolen, how has this happend?

2013-02-01 Thread Adam
Yeah, that's what I thought. As I said, I'd be more than happy to take my app down. But I can't. It's a pretty funny situation to be honest. I doubt he would have made much from the ads and I'm guessing those 100k+ downloads and 300 odd comments have been done by a bot. The game is crap, full o

[android-developers] “Fix Project Properties”

2013-02-01 Thread bob
Can anyone explain in layman's terms what “Fix Project Properties” does? Also, is there a log or something you can check to see exactly what it has done after you ran it? Thanks. -- -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To po

Re: [android-developers] “Fix Project Properties”

2013-02-01 Thread TreKing
On Fri, Feb 1, 2013 at 4:43 PM, bob wrote: > Can anyone explain in layman's terms what “Fix Project Properties” does? > Will you please learn to use Google? The very first hit is an answer on StackOverflow.

[android-developers] Re: “Fix Project Properties”

2013-02-01 Thread Lew
bob wrote: > Can anyone explain in layman's terms what “Fix Project Properties” does? > Basically tells the project where the Android SDK is. If you see a message suggesting that you fix your project's properties, it tells you what it does. > Also, is there a log or something you can check t

[android-developers] Re: startActivity

2013-02-01 Thread Lew
bob wrote: > Can someone help me understand why the startActivity method is in the > Activity class? > Because it's an abstract method in 'Context' and must be implemented in any non-abstract derived type. > I really don't feel like it clearly belongs in any class. No one is concerned with y

Re: [android-developers] Efficient way to update one of the childs of a ExpandableListView group?

2013-02-01 Thread Lew
saex wrote: > argg you didn't understand me. I KNOW HOW TO GET THE VIEW, it is > not the problem, read the full post please >> >> >> Instead of bitching and shouting at everyone trying to help you for free, which is a pretty darn good way to stop receiving free help altogether as people

Re: [android-developers] Re: can you debug?... here error: syntax error : insert "(" to complete expression

2013-02-01 Thread Lew
Kostya Vasilyev wrote: > Sometimes Java compile errors stick after they've been corrected. I just > saw this today (Eclipse 3.7.2, latest ADT). Not sure if it's an issue with > Eclipse or ADT. > > It's Eclipse, not ADT, I assess. Eclipse is notable for maintaining its own idea of artifact state

[android-developers] Alpha ordering ListPreference values to suit current locale

2013-02-01 Thread William Ferguson
What's the optimal way to ensure that the values in a ListPreference are alpha ordered according to the current locale? Eg if my list contains languages cs da de en es fi Czech Danish German English Spanish Finnish Tschechisch Dänisch Deutsch Englisch S

[android-developers] Re: Alpha ordering ListPreference values to suit current locale

2013-02-01 Thread lbendlin
smells like a database driven custom preference to me. On Friday, February 1, 2013 9:13:09 PM UTC-5, William Ferguson wrote: > > What's the optimal way to ensure that the values in a ListPreference are > alpha ordered according to the current locale? > > Eg if my list contains languages > > cs

Re: [android-developers] Re: asynctask vs. FragmentRetainInstance.java in API demo

2013-02-01 Thread Hand Green
Thank you for your response. If I use a fragment as a worker thread, I will adapt the pattern in FragmentRetainInstance.java. Because it is unnecessary for a worker fragment to start a asynctask, the worker thread can do the task directly by using java.lang.Thread. However, I still do not understa

[android-developers] Re: Dynamic Application Theme

2013-02-01 Thread Kevin TeslaCoil Apps
For animations you can use overridePendingTransition(0, 0); which I think is more reliable than the Intent flag. http://developer.android.com/reference/android/app/Activity.html#overridePendingTransition(int, int) Do it right before the startActivity As for when to start the activity you might

[android-developers] Exploring and Downloading files from a device over a wifi connection

2013-02-01 Thread Raneez
I want my android application to connect to a device like FlashAir over *wifi* connection and *explore* its *directories* and *download* the selected files to the android device. I have gone through this post

[android-developers] Adjusting the mic sensitivity for recording audio in android

2013-02-01 Thread Raneez
I am developing an android application which records audio in *PCM* using the *AudioRecord* API. I want to adjust the mic sensitivity to low, medium and high as the user chooses it in the settings. Is it possible to adjust the *mic sensitivity*? Your answers will be highly appreciated :) --