[android-developers] Best strategy in handling location change

2012-09-23 Thread Ichsan
Currently, I'm creating an app which alarms user tasks at specific time. The time is automatically calculated based on coarse location. So, when users fly miles away, the alarm time has become invalid. So the app needs to recalculate the time. FYI, the alarm should be always on (when exiting

[android-developers] problem using webview?

2012-09-23 Thread Hitendrasinh Gohil
Hi, I am trying to load google.com with query string but only black screen comes. If i load http://www.google.com then it works fine but if i add query string then it didnt work. webView = (WebView) findViewById(R.id.webView1); webView.getSettings().setJavaScriptEnabled(true);

Re: [android-developers] problem using webview?

2012-09-23 Thread Harri Smått
Hi, Could you elaborate a little bit more about your setup; mainly Android version and/or device if this happens on device only? I ran the same code with my SGS2 (ICS 4.0.4) without no problems. -- H On Sep 23, 2012, at 10:04 AM, Hitendrasinh Gohil hitendrasin...@gmail.com wrote: I am

Re: [android-developers] Best strategy in handling location change

2012-09-23 Thread Harri Smått
Hi, This is a wild guess, totally out of my knowledge, but do you think listening to android.intent.action.TIMEZONE_CHANGED gave you means to act accordingly to your needs? -- H On Sep 23, 2012, at 9:59 AM, Ichsan ich...@gmail.com wrote: Currently, I'm creating an app which alarms user tasks

[android-developers] Re: Proper way to communicate service errors to activity

2012-09-23 Thread Gal Ben-Haim
you can use ResultReceiver, create one in your activity and pass it to the service then send messages from the Service to the Activity with receiver.send() On Friday, September 21, 2012 5:57:35 PM UTC+3, Cool Frood wrote: Hi, I'm trying to implement a service that is started by an activity.

[android-developers] Re: Advertising opt out

2012-09-23 Thread John Coryat
I don't deny that. But who cares about CPM? If you have the same amount of C's and less M, the R has not increased, in all likelihood. Well, I for one care about eCPM. Ours is currently $2.43. If you have a better eCPM then perhaps you are right and I am wrong. On the other hand, there

[android-developers] Testers wanted for new AdMob client app

2012-09-23 Thread Jethro Borsje
Hi all fellow devs, I've created a new AdMob client app. Amongst other things it has support for multiple accounts, a tablet UI and currency conversion. I've tested the app myself on my own devices (phones with 2.3.3 and 2.3.5, tablet with 3.1) and on the emulator, but I'm curious as to know

[android-developers] ICS, invalidateOptionsMenu() and hardware menu key

2012-09-23 Thread b0b
In an ICS app (targetSdkVersion=15) with an action bar, I'm calling invalidateOptionsMenu() to force recreation of the menu. The behaviour is different whether the Android device has a hardware menu key or not. - if it has a hardware menu key, the overflow menu is not shown. The menu is

[android-developers] Re: Testers wanted for new AdMob client app

2012-09-23 Thread John Coryat
Personally, I wouldn't want to use a non-official app for AdMob information as I would be concerned about security. AdMob's web site works pretty good on Android. -John Coryat -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Re: Testers wanted for new AdMob client app

2012-09-23 Thread Jethro Borsje
The login information gets stored in the Android account manager. Furthermore AdMob has a read-only API, so you don't have to be afraid of any modifications that can be done by apps. Op zondag 23 september 2012 15:04:01 UTC+2 schreef John Coryat het volgende: Personally, I wouldn't want to

Re: [android-developers] FLASH_MODE_TORCH doesn?t work in Samsung Galaxy Ace

2012-09-23 Thread Jim Graham
On Sat, Sep 22, 2012 at 10:18:48AM -0700, Barragan wrote: Here my question: I?m doing a flash light aplication, and my aplication works in all devices with flash, but it doesn?t work in some Samsung devices, how Samsung Galaxy Ace. I searched in Internet but i don?t find anything... and

Re: [android-developers] Help: My app has violated the spam provisions of the Content Policy

2012-09-23 Thread FiltrSoft
Maybe if Google's search results in the Play Store actually worked, devs wouldn't have to resort to tactics like these to get their apps to show up correctly in searches. On Friday, August 31, 2012 2:27:19 PM UTC-4, TreKing wrote: On Fri, Aug 31, 2012 at 1:33 AM, Terry ter...@gmail.com

[android-developers] Displaying menu icon in ICS

2012-09-23 Thread dashman
How can I display a menu icon (3 vertical dots) in ICS devices and yet maintain compatibility with android v1.6+. On some apps, this icon is displayed on the top-right corner and when pressing the physical hardware menu button - the menu pops up below the icon - also when touching the icon. I

Re: [android-developers] Displaying menu icon in ICS

2012-09-23 Thread Mark Murphy
On Sun, Sep 23, 2012 at 10:18 AM, dashman erjdri...@gmail.com wrote: How can I display a menu icon (3 vertical dots) in ICS devices and yet maintain compatibility with android v1.6+. Have a targetSdkVersion of 11 or higher, and probably 14 or higher. This will give you an action bar (vs. the

Re: [android-developers] Displaying menu icon in ICS

2012-09-23 Thread dashman
ActionBarSherlock??? is that right spelling...sounds like a nuveau sheakespearean play. On Sunday, September 23, 2012 10:31:00 AM UTC-4, Mark Murphy (a Commons Guy) wrote: On Sun, Sep 23, 2012 at 10:18 AM, dashman erjd...@gmail.com javascript: wrote: How can I display a menu icon (3

Re: [android-developers] Displaying menu icon in ICS

2012-09-23 Thread dashman
thanks. well if you want to be picky - i was off on my shakespeare also. -- 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]

2012-09-23 Thread doopza
Specialenforch -- 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

[android-developers] Adsense and WebView

2012-09-23 Thread Ildar Nigmatzyanov
Hello. Please, help me ) I try to create app. It is like RSS reader, but we use our own rss feeds. It works together with WebView. Also, we use adsenes in feedburner, but then i start my app I see feed (like html page), but dont see adsense. Is it possible to see adsense in app on android?

Re: [android-developers] EditText lose focus when appears keyboard in ListView

2012-09-23 Thread biosstar
Try to set android:windowSoftInputMode=adjustPan for your activity in the AndroidManifest.xml That solved the problem for me Am Donnerstag, 29. April 2010 05:12:23 UTC+2 schrieb krekar: Hi, all :D I make ListView that has some items that has one EditText and one ImageButton. When

[android-developers] Android “mmap failed: Out of memory” with large APK

2012-09-23 Thread Allen
My Android app APK is fairly large at ~480 MB. I can install the app just fine but on Android OS 2.2 when the app is launched I get this error (int logcat): 09-21 00:04:12.855: W/dalvikvm(3178): mmap(480331001, RO, FILE|SHARED, 28, 0) failed: Out of memory 09-21 00:04:12.855:

[android-developers] Re: How to screen capture through fb0 on galaxy nexus?

2012-09-23 Thread Bin Wang
I have same issue too!!! Do you figure it out? On Thursday, February 16, 2012 11:11:40 AM UTC+8, Prolific MI wrote: I cat dev/graphics/fb0 /data/local/picture Nexus S with Android 4.0.3 is OK. but galaxy nexus is failed.(all raw data is zero) Can you tell me how to get fb0 on galaxy

[android-developers] Re: Suggestion of Augmented Reality SDK?

2012-09-23 Thread Henry
The book PRO Android Augmented Reality. Greetings El miércoles, 12 de septiembre de 2012 09:17:19 UTC-5, Duygu Kahraman escribió: I am interested in augmented reality but i am newbei about this topic.I read some suggesstion about SDK.I download metaio,wikitude,vuforia sdk but i can not

[android-developers] Re: cannot cancel a subscription via RESTFUL web service

2012-09-23 Thread Zamees
Were you ever able to get this working? On Tuesday, July 3, 2012 10:57:33 AM UTC-4, vipremobile wrote: Good Morning, I am a web developer working on an interface to query (and maybe manage) google subscriptions related to our app purchase. I've been using this HTTP API interface to

[android-developers] Eclipse setup question

2012-09-23 Thread Jared Greenwald
So, I'm just trying to get started learning Android development. I wanted to start with something simple, so I'm trying out the My First App tutorial app that comes with the Eclipse plugin. I seem to be running into a couple of hurdles. I posted on Stack Overflow, but only got a couple

[android-developers] Re: Android App - Python+Eclipse

2012-09-23 Thread Alexandre Carlos
Quinta-feira, 20 de Setembro de 2012 22:09:33 UTC+1, Prat escreveu: Hello, I am a beginner of android apps. I am using eclipse to develop an android app for samsung galaxy tab. I have installed pydev plugin for eclipse too. However, I am unsure of how to bundle my python files and create

[android-developers] How long until downloads/sales report?

2012-09-23 Thread Nick Cifonie
We uploaded our 1st apps yesterday and know there have been downloads, but none show in the Dev console. Is there a delay? Nick -- 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] KeyEvent sent by custom IME is not being completely parceled.

2012-09-23 Thread Matthew Williams
Hi, Please see my original posting on StackOverflow herehttp://stackoverflow.com/questions/12519856/android-custom-keyevent-not-passing-to-textview - I couldn't get a response, and I think this problem is specific enough to ask here. What I'm trying to do is capture all the likely keys from

[android-developers] Help me: undefined reference to `std::locale::locale()

2012-09-23 Thread Michael.Kang
I try to link LLVM library to build my android NDK application, but the following link error appear : ERROR MESSAGE ###

[android-developers] Re: Failed to fetch URL https://dl-ssl.google.com/android/repository/repository.xml

2012-09-23 Thread Andreas Geyer
On Monday, 17 September 2012 15:57:12 UTC-7, Alexei Colin wrote: On Thursday, November 5, 2009 1:27:55 AM UTC-5, Andrew Pollock wrote: it turned out that while I had the sun-java6-bin package installed, the alternatives system was making /usr/bin/java point to the GNU Java bytecode

[android-developers] Hitarea in LinearLayout view

2012-09-23 Thread powder366
Hi, I have defined a LinearLayout with some TextView's spread out. Instead of putting a setOnTouchListener on each specific TextView, I like to divide my LinearLayout in three areas (hitareas). If I hit the top area I do something (in the middle something else etc.). I.e. I'd like to have three

[android-developers] Convert touch event coords to opengl (without offset)

2012-09-23 Thread Tomas Kislan
Hello, I have a problem with implementing touch events on GLSurfaceView views size is 1280x696, because of android 4 status bar at bottom, (screen resolution is 1280x800) but ontouchlistener is receiving touch events with coords [646.0,739.0], and thus my gluunproject method fails to return

[android-developers] Re: Can anybody tell me how can i disable BACK button on android?

2012-09-23 Thread Marty Ballard
Here is how I've done it in one of my apps: @Override public void onBackPressed() { Toast.makeText(this, Back button disabled, press Reset, Toast.LENGTH_LONG).show(); } On Wednesday, September 19, 2012 1:10:52 PM UTC-5, Wajiha Kanwal wrote: Can anybody tell me how can i disable BACK

[android-developers] Re: importing of jar file problem

2012-09-23 Thread l7777777b
me too need some answers for this.. -- 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: quick action multi row view

2012-09-23 Thread Lucio Savino
Have you solved it? I have the same problem and I wondering if you can help me. Thx, Lucio Il giorno lunedì 16 aprile 2012 10:28:34 UTC+2, Live Happy ha scritto: i used the quick action view 3d who exist in this site and its work like charm to me

[android-developers] Re: text to pdf in android

2012-09-23 Thread Lindsay Manning
If not allowable on the android itself then is it possible for you to implement a server side solution? You could write a webservice that uses something like PDFSharp and feeds the PDF back to the device. Just a thought, Lins. -- You received this message because you are subscribed to the

[android-developers] Is stereo audio to 3.5 Jack and separate Audio Stream to another output possible?

2012-09-23 Thread Lindsay Manning
I want to use an android device for DJing but I dont want to split the Stereo audio out to 2 separate Mono outs to get a separate monitor and a live output, which is the way devices seem to do it at the moment. I searched for DJ apps that might do this already but to no avail so I want to

[android-developers] reorder pages in FragmentStatePagerAdapter using getItemPosition(Object object)

2012-09-23 Thread UgglyNoodle
I believe that FragmentStatePagerAdapter does not behave correctly when overriding getItemPosition(Object object) with the purpose of reordering the pages. Below is a simple example. In the initial state, the order of the pages is {A, B, C}. Upon calling toggleState(), the order of the pages

[android-developers] Re: [Question] How can I install the Android SDK Linux on Ubuntu 12.04.1

2012-09-23 Thread Mark Ward
Has the file got execute permissions? ls - al should show x for owner a least On Saturday, 22 September 2012 14:01:13 UTC+12, Raziel23x wrote: I have been trying all morning and half g today trying to get the bloody thing to instill. I have followed the instructions in the txt file inside but

[android-developers] How to install ADT Plugin in Eclipse ? Error in Accessing Help !!!!!!

2012-09-23 Thread Purushotham Kumar
Hi Can Any one please help me? I downloaded every package of eclipse and tried to install android plugin (ADT Plugin). Always it install successfully but failed to create android projects as the plugin doesn't enable in my system. My System Configuration OS : Windows 7 64 bit Processor :

[android-developers] Re: SMPP over android

2012-09-23 Thread miya
Hi, please how i can use SMPP with android for send and receiver the sms? thks On Friday, November 11, 2011 10:40:59 AM UTC, Shire Highlands wrote: Yes. You Can On Nov 4, 8:08 am, androidgeek itestandroid@gmail.com wrote: Can I implement SMPP (Simple message peer-to-peer) over

Re: [android-developers] Re: Custom DialogPreference and PreferenceManager.setDefaultValues issue

2012-09-23 Thread Gene Wildhart
Your solution works perfectly for me on Gingerbread (Android 2.3.7) and below. However, when trying on ICS (4.0+) or newer, neither the * onSetInitialValue* or the *onGetDefaultValue* functions are ever called. Can anyone explain why the behavior changed in ICS? On Friday, July 27, 2012

[android-developers] ListFragment Issue

2012-09-23 Thread Minh Bui
Hi, i'm using a ListFragment with an ExpandableListView - which is backed by a SimpleCursorTreeAdapter - at the moment and everything was working perfectly. I decided at a later stage to switch to the support.v4.ListFragment to implement lateral navigation with the ViewPager and all of a

[android-developers] Modifying YouTube player streaming behavior

2012-09-23 Thread Shathil Reiut
Hi I am trying to modify the progressive download behaviour of the YouTube player. The idea is to download the 10MB of the content at once. Then tear down the TCP connection. When the playback reaches around 9MB, the player will send the request again. Any idea how to proceed ? Br Shathil --

[android-developers] Re: Google Voice call logging on Samsung Galaxy S3 T-Mobile (SGH T-999)

2012-09-23 Thread Sandeep Potdar
I have this problem as well. I upgraded my GS2 (TMobile) from 4.0.3 to 4.0.4 and now Google Voice doesn't log the actual called numbers but rather weird (Google Access Numbers). I hate to factory reset. Too much work. And neither has anyone guaranteed it will work. Is there anything else that

[android-developers] Re: how to make textview clickable

2012-09-23 Thread vaish
hey evry1.. actually i 've tried onClick property on my textview but still it's not wrking.. even i've directly used onclicklistener also on my text view, like this- overWtLink=(TextView) findViewById(R.id.textView6); public void OverWt(View view) { if(view.getId()==R.id.textView6) { Intent

[android-developers] Re: Installing ADT on Eclipse Juno

2012-09-23 Thread SONJAY SINGH
i am unable to install ADT offline / online everytime same error occurs in my eclipse juno Cannot complete the install because one or more required items could not be found. Software being installed: Android Native Development Tools 20.0.3.v201208082019-427395

[android-developers] Published Android App Question

2012-09-23 Thread Young Shakey
Hi I have an Android app in the Play Store, what I would like to know, when I change my app, say I completely overhaul the app, keeping the same name, would the update fully wipe out the previous version, so the app works for previous installed customers and new customers as well. -- You

[android-developers] Which API to install for icecream sandwich?

2012-09-23 Thread Shashi Shekhar
My phone is running 4.0.4 but Android SDK is showing only 4.0 and 4.0.3 to download which should in download to run apps in my phone? -- 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] Android: nXn metric over an image .. Which Also move with image.

2012-09-23 Thread umesh rathod
I want a metric or a grid over an image of nXn . As I zoom the image this should also get zoom. And this grid should also move with the Image move. Is there any way to do this in android. If image is moving out of the screen this grid should also move out of the screen. -- You received this

Re: [android-developers] Modifying YouTube player streaming behavior

2012-09-23 Thread Mark Murphy
Since the YouTube player is not open source: Step #1: Get a job at Google. Step #2: Attempt to join whichever team is responsible for implementing the YouTube player (probably the YouTube team) Step #3: Work with your teammates to implement your desired change On Sun, Sep 23, 2012 at 10:04 AM,

[android-developers] Re: Hitarea in LinearLayout view

2012-09-23 Thread powder366
Possible solutions: http://stackoverflow.com/questions/12554805/hitarea-in-linearlayout-view On Sunday, September 23, 2012 8:07:36 PM UTC+2, powder366 wrote: Hi, I have defined a LinearLayout with some TextView's spread out. Instead of putting a setOnTouchListener on each specific

[android-developers] Re: Hitarea in LinearLayout view

2012-09-23 Thread powder366
Possible solution: http://stackoverflow.com/questions/12554805/hitarea-in-linearlayout-view On Sunday, September 23, 2012 8:07:36 PM UTC+2, powder366 wrote: Hi, I have defined a LinearLayout with some TextView's spread out. Instead of putting a setOnTouchListener on each specific

Re: [android-developers] Eclipse setup question

2012-09-23 Thread Harri Smått
Hi, What happens if you right-click on your project in package explorer? This screenshot is from OSX though; http://imgur.com/OrEBt -- H On Sep 23, 2012, at 4:27 PM, Jared Greenwald greenwaldja...@gmail.com wrote: 2 - How do I configure the Run button in Eclipse to run the app either on one

Re: [android-developers] Which API to install for icecream sandwich?

2012-09-23 Thread Harri Smått
Hi, My phone is 4.0.4 too but I'm usually developing with API level 8. And use API 15 sometimes also. -- H On Sep 23, 2012, at 9:33 AM, Shashi Shekhar shashi.carbo...@gmail.com wrote: My phone is running 4.0.4 but Android SDK is showing only 4.0 and 4.0.3 to download which should in

Re: [android-developers] Re: Advertising opt out

2012-09-23 Thread Francisco Marzoa
You could have -or simply claim to have, since there is no way for us to check it- an eCPM of $200 and you will be still wrong: the problem has nothing to see with your eCPM, the problem is that you are clearly miss understanding the meaning and calculation of such metrics. On the other hand

[android-developers] Re: Help: My app has violated the spam provisions of the Content Policy

2012-09-23 Thread FiltrSoft
lol, it's do as I say, not as I do, with The Google. On Friday, August 31, 2012 5:25:40 AM UTC-4, b0b wrote: For your enjoyment here's what can be found in the description of the Google Maps app: Keywords: maps, navigation, places, latitude, directions, indoor maps, local search, Street

Re: [android-developers] Re: Help: My app has violated the spam provisions of the Content Policy

2012-09-23 Thread Harri Smått
Hi, I've never played around with keywords but I have to admit I tend to see huge difference in Google Maps keywords and the application in question here. For me the latter list seems more of a list of synonyms. -- H On Sep 23, 2012 11:48 PM, FiltrSoft kri...@gmail.com wrote: lol, it's do as I

Re: [android-developers] Re: Help: My app has violated the spam provisions of the Content Policy

2012-09-23 Thread b0b
Does it mean that making a list with all words of the dictionary that are not synonyms is ok ? On Sunday, 23 September 2012 22:59:14 UTC+2, Harri Smått wrote: Hi, I've never played around with keywords but I have to admit I tend to see huge difference in Google Maps keywords and the

Re: [android-developers] Re: Help: My app has violated the spam provisions of the Content Policy

2012-09-23 Thread Harri Smått
Hi, I'd like to see application that required the whole dictionary as keywords to explain it. Otherwise I see keywords were something you need to find a few good ones only. But as said, I'm not familiar with how keywords affect searches and it's best I end this discussion on my behalf here. -- H

Re: [android-developers] Re: Help: My app has violated the spam provisions of the Content Policy

2012-09-23 Thread Kostya Vasilyev
Market searches are pretty weird, even if you don't consider additional keywords. My pet peeve: trying to find, by name, an app that happens to support themes results in an endless list of Britney Spears Theme for App Name Pro and the like... The app itself is then buried somewhere on the

Re: [android-developers] FLASH_MODE_TORCH doesn?t work in Samsung Galaxy Ace

2012-09-23 Thread Barragan
I haven´t tryed if torch mode is supported, but for example, the aplication Tiny flashlight works in Samsung Galaxy Ace, and i don´t know the reason... I guess that i will have use other mode to use FLASH_MODE_TORCH, but i don´t know... El domingo, 23 de septiembre de 2012 15:58:05 UTC+2,

[android-developers] Re: Can anybody tell me how can i disable BACK button on android?

2012-09-23 Thread Lew
Marty Ballard wrote: Wajiha Kanwal wrote: Can anybody tell me how can i disable BACK button on android? Here is how I've done it in one of my apps: @Override public void onBackPressed() { Toast.makeText(this, Back button disabled, press Reset, Toast.LENGTH_LONG).show();

[android-developers] Re: SIP DEMO

2012-09-23 Thread vaggos von karajan
* sorry for my mistake. university. It's a project for a lesson. Τη Σάββατο, 22 Σεπτεμβρίου 2012 11:51:25 π.μ. UTC+3, ο χρήστης vaggos von karajan έγραψε: I have installed the application to my phone (ver 2.3.3) but when i'm calling someone nothing happens the app does not

Re: [android-developers] Abridged summary of android-developers@googlegroups.com - 73 Messages in 44 Topics

2012-09-23 Thread Agbenyo koami Edem
-- 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, visit

[android-developers] Access Web Services via SOAP on password-protected server from an Android App

2012-09-23 Thread solnichko
Hi guys, Does anyone know how I could make it possible to access Web Services via SOAP on password-protected server from an Android App. I am in the process of developing an app that used to access those services and suddenly it stopped working. I've tried everything and when I finally

Re: [android-developers] text to pdf in android

2012-09-23 Thread Kristopher Micinski
On Sat, Sep 22, 2012 at 7:19 AM, Harri Smått har...@gmail.com wrote: Hi, I don't want to sound harsh but did you check e.g StackOverflow before asking here? Good thing about StackOverflow is that well-formed questions asked there show high on Google searches too; android convert text to pdf.

Re: [android-developers] Access Web Services via SOAP on password-protected server from an Android App

2012-09-23 Thread TreKing
On Sun, Sep 23, 2012 at 8:19 PM, solnichko lari...@gmail.com wrote: I have spoken to the person who made those changes to the server configs, he advised there should be a way around it. Perhaps you can have them advise you what that way around it is, since, you know, they made the changes.

Re: [android-developers] Which API to install for icecream sandwich?

2012-09-23 Thread TreKing
On Sun, Sep 23, 2012 at 1:33 AM, Shashi Shekhar shashi.carbo...@gmail.comwrote: My phone is running 4.0.4 but Android SDK is showing only 4.0 and 4.0.3 to download which should in download to run apps in my phone? It doesn't matter. Use the latest.

Re: [android-developers] Published Android App Question

2012-09-23 Thread TreKing
On Fri, Sep 21, 2012 at 1:07 PM, Young Shakey williedevonsm...@gmail.comwrote: would the update fully wipe out the previous version, so the app works for previous installed customers and new customers as well. What else would an update do?

Re: [android-developers] How long until downloads/sales report?

2012-09-23 Thread TreKing
On Sat, Sep 22, 2012 at 2:48 PM, Nick Cifonie appsahoymob...@gmail.comwrote: We uploaded our 1st apps yesterday and know there have been downloads, but none show in the Dev console. Is there a delay? http://support.google.com/googleplay/android-developer/bin/answer.py?hl=enanswer=136601

Re: [android-developers] Displaying menu icon in ICS

2012-09-23 Thread TreKing
On Sun, Sep 23, 2012 at 11:43 AM, dashman erjdri...@gmail.com wrote: thanks. well if you want to be picky - i was off on my shakespeare also. Well, if you want to be picky - thanks, well, i, and shakespeare should all be capitalized.

Re: [android-developers] Best strategy in handling location change

2012-09-23 Thread TreKing
On Sun, Sep 23, 2012 at 1:59 AM, Ichsan ich...@gmail.com wrote: Currently, I'm creating an app which alarms user tasks at specific time. The time is automatically calculated based on coarse location. Why are you calculating time based on location? If you better explain your use case you'll

Re: [android-developers] Oject Size Measurment

2012-09-23 Thread TreKing
On Fri, Sep 21, 2012 at 11:59 PM, Haris haris...@gmail.com wrote: My question is does android have any utility other the opencv for doing this...? No. - TreKing

Re: [android-developers] problem in service

2012-09-23 Thread TreKing
On Fri, Sep 21, 2012 at 7:52 AM, rathod kantilal rathod3...@gmail.comwrote: I use service in android, I want to do when my application is in background, my service is start automatically, but when my application is foreground, my service is stop automatically. Please if u have any idea or

Re: [android-developers] using color.xml definitions in string.xml

2012-09-23 Thread TreKing
On Fri, Sep 21, 2012 at 11:40 AM, Robert Greenwalt rgreenw...@google.comwrote: Is there a syntax that allows me to reference a color defined in color.xml in my string.xml file? I don't know, but consider using a style that you apply to whatever TextView or other View you're showing that text

Re: [android-developers] Re: android.app.Application NullPointerException

2012-09-23 Thread TreKing
On Wed, Sep 19, 2012 at 6:54 AM, Heila van der Merwe heilam...@gmail.comwrote: So just to clarify: the advantage of using a Singleton object will be that if the app is killed, the Singleton object can just be recreated when it is needed. So you could use a Singleton object in the Application

Re: [android-developers] Eclipse setup question

2012-09-23 Thread Jared Greenwald
Ah, yes, that seems to be along the lines of what I was looking for. I was able to change the Run Configurations so that it would ask me where I want to run the app each time. Works pretty well, but is there a way to pin this to the toolbar? Not to sound lazy or anything, but this is kinda

Re: [android-developers] Best strategy in handling location change

2012-09-23 Thread Muhammad Ichsan
To simplify, this is an application which set off alarm by location. The alarm is determined by user coarse location. On Sep 24, 2012 10:22 AM, TreKing treking...@gmail.com wrote: -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

Re: [android-developers] Best strategy in handling location change

2012-09-23 Thread Kristopher Micinski
wait so then why are you concerned about the time... kris On Mon, Sep 24, 2012 at 12:25 AM, Muhammad Ichsan ich...@gmail.com wrote: To simplify, this is an application which set off alarm by location. The alarm is determined by user coarse location. On Sep 24, 2012 10:22 AM, TreKing

[android-developers] Re: Oject Size Measurment

2012-09-23 Thread Haris
Thanks. On Saturday, 22 September 2012 10:29:01 UTC+5:30, Haris wrote: Hai all... I need to develop an application like measure the size of an object with a reference object using camera.That is I need to measure the size of an unknown object by putting a known size

[android-developers] Android Battry Usage

2012-09-23 Thread Haris
Hai all. I have create some application for my android phone and I successfully installed it and ran itBut when I look at my battery usage it showing my application consumes 22 % of battery. I thought it was running in back ground but it's not...Why this happening.. is it my coding

Re: [android-developers] Best strategy in handling location change

2012-09-23 Thread TreKing
On Sun, Sep 23, 2012 at 11:25 PM, Muhammad Ichsan ich...@gmail.com wrote: To simplify, this is an application which set off alarm by location. The alarm is determined by user coarse location. Providing less information does not simplify anything.

Re: [android-developers] Android Battry Usage

2012-09-23 Thread Kristopher Micinski
It's hard to tell without more details about your app.. But it's very possible that your app might not be using that much of the battery, and you're just not... using much on your device. That's the danger of percents... kris On Mon, Sep 24, 2012 at 1:10 AM, Haris haris...@gmail.com wrote:

[android-developers] Re: Access Web Services via SOAP on password-protected server from an Android App

2012-09-23 Thread William Ferguson
If the Request requires authentication then you're going to have to authenticate. Sounds like you'll need to provide username/password in the Request header. William On Monday, September 24, 2012 11:19:14 AM UTC+10, solnichko wrote: Hi guys, Does anyone know how I could make it possible to

Re: [android-developers] using color.xml definitions in string.xml

2012-09-23 Thread UgglyNoodle
Another option is to define the string resource as: string name=my_stringfont fgcolor=#%hSTRING: /font/string Then, you can insert the colour using: String.format(getString(R.string.tasksnotify_format_colourful), getColor(R.color.my_color_defintion)) On Sunday, September 23, 2012

[android-developers] usbfs: interface 0 claimed by usbfs while 'vcsFPService' sets config #1

2012-09-23 Thread chain_chelliah
When i start up my service through hyper terminal window the following error has been occurred. * [ 460.987579] usb 1-1.4: usbfs: interface 0 claimed by usbfs while 'vcsFPService' sets config #1* * * *1. How to fix this error?* *2. Kindly share why it was happened?* * * *I'm using ,* * * *