[android-developers] Secodary reminder not firing

2016-08-21 Thread Danny Burgans
I have an app that is being developed. The apple ios is done and works great. Hiwevere my android developers, Cannot seem to get the secondary remiderto fire on time, they have been working on it 8 months. Design,, set location, set geofence area, it fires first notification, Secondary, toggles, 1

[android-developers] Auto update of an App after manual installation directly on the phone?

2016-02-04 Thread Danny D
One way I've solved this is to have your app check the version (either against your server by other means), then open the Play-Store app with an intent directing it to your app listing there. To the user, it looks just as if they had navigated there themselves. If I remember, there's a way to

[android-developers] Whats your story behind your brand? ---to start up

2015-12-03 Thread Danny Xu
*Story---company culture* For me it is the most important thing for a brand If a brand doesnt have story, its like a person dont have a soul If you ask people who have been in sales for years they will tell you this: people believe in stories, they believe because they can relate on that

[android-developers] whats the best app on your phone? share with us

2015-12-03 Thread Danny Xu
1. magic jack --- allow you to call north America for free 2. camscanner --- allow your cellphone to be like a scanner 3.meshbean

[android-developers] Need you advice on my new developed apps guys plz

2015-12-03 Thread Danny Xu
Hi Everyone! I have recently developed an App called MeshBean Game Discovery. Please check it out and let me know if anything i need to improve on.Cheers! Users are facing this problem: when they try to find a good game or good app in applestore or googleplay, for top100 its always sam

[android-developers] Fragments: still use Activity for Smartphones?

2015-08-19 Thread Danny S.
se Fragments started with Android 3.0 where Fragments was firtly introduced to tablets!? But I can't find explanations for this behavior. Now I beleave it is better to handle them as Fragments on single pane too. Can someone agree please. What is the (more) correct (more official/ suggested) way? We

[android-developers] Calendar API and local events only

2014-04-23 Thread Danny S.
events that no longer exists on server side. Thank you very much in advance, hope someone can give an advice. -Danny Schimke -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-devel

Re: [android-developers] ContentProvider contains dirty data from a previous JUnit test

2014-02-24 Thread Danny D
I haven't tested with the MockContentProvider, but I'm pretty sure that you just need to create one in the JUnit setup() routine and clear it in the teardown(). Make it a member of the JUnit class. I saw several detailed posts after doing a Google search, have a look here:http://www.jayway.co

Re: [android-developers] ContentProvider contains dirty data from a previous JUnit test

2014-02-23 Thread Danny D
As I read your reply, I'm confused now about what's being tested. Are you testing the ContentProvider or the Activity? If testing the Activity, it may be better to create a MockContentProvider that's responsible for providing back the info. If testing the ContentProvider, skip the Activity an

[android-developers] ContentProvider contains dirty data from a previous JUnit test

2014-02-22 Thread Danny D
Is the object instance for the content provider different between test runs? How are you destroying and recreating the ContentProvider? I suspect that if the Application instance is the same between test runs the ContentProvider might be too. It's created at the Application level through the m

[android-developers] How does Manifest recognize the particular activity as a main or first activity in android?

2014-02-18 Thread Danny D
The Activity that is launched is determined by the incoming Intent and the various IntentFilters you have configured in your manifest. The intent filter that you have set there in the manifest channels the launch intents to your 'Main' Activity. Try moving the entire intent filter block from you

[android-developers] RSS feed parsing multiple images with SAX parser for same nodes/parameters

2013-12-24 Thread Danny D
Not 100℅ understanding your question. How familiar with SAX are you? You should be handling the start element and end element for each , put them into a list of either String or URL or URI objects. For the latter two, you'll need to add the host and any path stuff. There are lots of SAX pars

Re: [android-developers] Provide events to Calendar-App using ContentProvider

2013-11-25 Thread Danny S.
-cream) Regards! -Danny Schimke Am Freitag, 22. November 2013 17:27:41 UTC+1 schrieb MagouyaWare: > > Step 1: Read this - > http://android-dev-tips-and-tricks.blogspot.com/2012/08/so-you-need-help.html<http://www.google.com/url?q=http%3A%2F%2Fandroid-dev-tips-and-tricks.blogspot.com

[android-developers] Provide events to Calendar-App using ContentProvider

2013-11-21 Thread Danny S.
much in advance! -Danny Schimke -- 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...@googlegr

[android-developers] Connect android device to local server

2013-05-15 Thread Danny D
I've done this many times, my typical setup is to have the handset connect to our office LAN through the wireless. You'll need to get the local address of the server, most WiFi access points will give you a listing of devices that they are routing for. I've also used Dynamic DNS services to pe

[android-developers] Re: [Socket/Client-Server communication ] how to verify if url and port is working fine

2013-04-08 Thread Danny D
Depending on what you want to test, there many different tools. Here are some suggestions based on what I've used in the past. Testing that the server works, try a browser as described above for really basic yes/no test. If the data isn't HTML or JSON/XML, you might just use wireshark to see

[android-developers] Parallel download images from different fragment

2013-04-03 Thread Danny D
I generally don't prefer loading images directly from the Fragment/Activity, because I typically use the images multiple places throughout the app and don't want the user to pay for the same data twice. General solution: setup a Singleton image cache like described in the docs, along with an

[android-developers] Re: How can I get notified when the server has closed the TCP connection

2013-04-02 Thread Danny D
I absolutely agree with putting the 'smarts' at the application level instead of relying on various flags and events from the TCP/IP layer. What interested me in this thread was your process / equipment control via the handset. As a safety mechanism, any equipment should go immediately into a '

[android-developers] Re: Automatied Environment for Android Building and Testing

2013-02-21 Thread Danny D
I agree with Mark's comment. Jenkins has plug ins for all this. I got from zero to working automated build system in something like two days. Hardest part was getting the SVN pull working correctly. Getting EMMA configured right was also a little tough, but once done it's 100% hands-off. Fo

[android-developers] using IP address 10.0.2.2 for android simulator works, but how do I point to localhost when testing on android device?

2013-01-05 Thread Danny D
I use the office WiFi without any trouble. Development machine is setup with a local 192... address, the hansdet will get another local address on the same subnet. I just direct requests to the development machine's address and everything works great. Debug through ADB is still by USB though

Re: [android-developers] Live voice changing during call (VOICE_UPLINK, VOICE_DOWNLINK)

2012-11-05 Thread Danny S.
Hi Mark, I feared already that it's not possible, but still hoped to hear an option to do that :'( Thanks a lot! -Danny Am Sonntag, 4. November 2012 23:16:11 UTC+1 schrieb Mark Murphy (a Commons Guy): > > AFAIK, this is not possible, sorry. > > On Sun, Nov 4, 20

[android-developers] Re: Problem while updating adapter from AsyncTask

2012-11-04 Thread Danny D
> > > I'm pretty sure that you're going to need to do these updates through the "runOnUiThread()" method. Here's an example of how I typically notify the list adapter/view /etc. Basically, if I think that there's any chance of cross thread problems, opt for the "runOnUiThread()" @Override

[android-developers] Live voice changing during call (VOICE_UPLINK, VOICE_DOWNLINK)

2012-11-04 Thread Danny S.
read that it's already difficult to record Android calls. Thank you very much! -Danny S. -- 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

Re: [android-developers] Play Store removals

2012-10-14 Thread Danny
I don't have any connections at Google so that's not an option.. Pester them on Google+ is something I've started yesterday, in a nice way though.. On Sunday, October 14, 2012 10:20:13 AM UTC+2, TreKing wrote: > > On Sat, Oct 13, 2012 at 1:05 PM, Danny > > wrote: &

[android-developers] Play Store removals

2012-10-13 Thread Danny
o, 25+ emails to Google without a response on the status of returning my app.. What can I do to get in contact with a live person at Google ? I've tried the developer help 10+ times already without an answer.. Thanks, Danny -- You received this message because you are subscribed to the Goo

[android-developers] Complaining party of a trademark infringement mailed google the app can go back but no responde for over 2 weeks now..

2012-09-29 Thread Danny
the subject of the email that says the app can go back (I was cc-ed) Anyone have a suggestion what else I could try besides mailing every day ? Thanks, Danny -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this gro

[android-developers] How to check bug id on git log

2012-08-16 Thread Danny Hsu
Dear all, When I check the commit id 503d6a44a8193d8111eba393651dcb522cc1cf87, it shows: commit 503d6a44a8193d8111eba393651dcb522cc1cf87 Author: Craig Mautner Date: Mon Jun 25 11:13:24 2012 -0700 DO NOT MERGE Set force hiding differently Only force hide windows when the keyguard

[android-developers] Start an Activity from a ContentProvider

2012-07-11 Thread Danny Shields
I have a content provider that gives arbitrary applications access to a user's data on an account. I would like to show a login dialog if the user is not logged into an account upon an application sending a request to the content provider. Is it possible? Or should I go about doing the login pr

[android-developers] Android login no more working

2012-06-19 Thread danny
Hello everybody, I have a google account with two step verification activated... ( not this one ) so I need my phone to login to my google account... Unfortunately my brother did insert a wrong password to android too much times... so it asks Email and Password to unlock but I can't provide it

[android-developers] Set encoding of webview widget for example turn Encoding on for Gzip

2012-05-27 Thread danny sasdan57
i have the code WebView webView = (WebView) findViewById(R.id.webView1); webView.getSettings().setJavaScriptEnabled(true); //webView.loadUrl("http://www.google.com";);

[android-developers] ActivityUnitTestCase and sendKeys()

2012-04-27 Thread Danny D
Can anyone please quickly confirm that ActivityUnitTestCase and sendKeys() DO work as the Android Developer docs describe. I've searched through a number of threads on this topic and I'm getting conflicting info. I've run through the "Spinner" and "SpinnerTest" samples, and the call to sendKeys(

[android-developers] Re: Modify a textview value in a custom listview after clicking

2012-03-26 Thread Danny D
Does the "no modification" rule apply to moving the views around? I've got a ListView object, where I'm using the "TouchListView.java" adaption to allow the user to resort the items Does this movement qualify as a "modification"? I'm performing data changes within the Adapter, but the actual

[android-developers] Re: httpclient post - debug the request?

2012-03-25 Thread Danny D
Hey Paul, I've had good luck with the TCP Monitor that's built into Eclipse. That seems to work really well for me. I've been debugging from one instance of Eclipse with the Android debugger against another instance of Eclipse running my servlet code in Tomcat. I've been able to use the TCP Moni

[android-developers] Google Wallet == Google Play In-App Service?

2012-03-23 Thread Danny Favela
satisfactory resource -- any tutorial recommendations for mobile usage of Google Wallet? Thanks! -Danny -- 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 fr

[android-developers] Re: Customized TextView for customized Typeface

2011-11-30 Thread Danny S.
call the super constructor and pass the attr to it, it takes all the relevant attributes... But it doesn't! -Danny On 30 Nov., 15:02, "Danny S." wrote: > I think this would not work. TextView extends View already... And If I > put the TextView within a LinearLayout e.g.

[android-developers] Re: Customized TextView for customized Typeface

2011-11-30 Thread Danny S.
my custom view. Best regards, -Danny S. On 30 Nov., 12:33, "Danny S." wrote: > Note: I renamed it from MemoryTextView to MyTextView but got not all > of them. Don't mind about the different names. In principle it works, > but I cant use the android default attributes for

[android-developers] Re: Customized TextView for customized Typeface

2011-11-30 Thread Danny S.
Note: I renamed it from MemoryTextView to MyTextView but got not all of them. Don't mind about the different names. In principle it works, but I cant use the android default attributes for my custom text view... On 30 Nov., 12:26, "Danny S." wrote: > Hi, > > I want to

[android-developers] Customized TextView for customized Typeface

2011-11-30 Thread Danny S.
ot list all the possible TextView styles to this list. It seems not to be the clear way. Where is my mistake? I only want a TextView with all of it's behavior and additional functionality... Thanks a lot, -Danny -- You received this message because you are subscribed to the Google Groups

[android-developers] Pick Contacts from pre- filtered list (ContentFilter?!)

2011-11-07 Thread Danny S.
through all of my contacts and if the picked contact has no address the user is in bad luck. I want to pre filter for this, so that the user can be sure that his selection delivers valid data. Hope someone can help! Thanks a lot, -Danny S. -- You received this message because you are subscribed to the

[android-developers] Access to voice/microphone during call

2011-10-24 Thread Danny S.
Hi, I am searching for a possibility to access the voice during a call - no recording: I want to change the spoken text live. Is this possible at all? Maybe there is no way... Is there any Android based API for this? I found nothing yet. Thanks in advance! -Danny S. -- You received this

[android-developers] where is log ?

2011-09-15 Thread danny
Hi When publish a app, I want get all running time and crash log back to me, but I don't know where are these log files. of course I can put all log printed by my code into a file, but how about system log? Thanks a lot! -- You received this message because you are subscribed to the Google Groups

[android-developers] Best way to update location of OverlayItem

2011-08-17 Thread Danny D
I'm writing an application that will have lots of map points, using the Google Maps API. The locations of my OverlayItems will be moving and changing, so I'd like input on best approach to take to update the new locations of the points as they move. I think that I have only two options (correct m

[android-developers] Re: KML Layers on Google Maps

2011-06-30 Thread Danny D
I don't believe that you can just pass the KML file to maps, at least I have not seen a way to do this. I am currently doing something similar, and I think you will need to draw the polygon manually on the canvas. As I'm approaching the problem, the individual OverlayItem (or child class derived

[android-developers] CursorAdapter over multiple columns

2011-06-29 Thread Danny S.
er? Is this possible? Thanks a lot! -Danny Schimke -- 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

[android-developers] OverlayItem Parcelable?

2011-06-26 Thread Danny D
Hi, Is the Maps API class OverlayItem parcelable? If not, can I extend the OverlayItem class and add my own implementation of Parcelable (for my extended data) and have it function correctly? Thanks. -- You received this message because you are subscribed to the Google Groups "Android Develope

[android-developers] Re: Use of the Resource reference "?" when setting widget attributes.

2011-06-08 Thread Danny D
I think that may be where we're getting mixed up. I've created a style tree that follows the SDK recommendations like this. It follows inheritance, using the "." notation, just like the examples in the SDK MyCompanyStyle | MyCompanyStyle.Header | | | MyCompanyStyle.Header.Bold | My

[android-developers] Re: Use of the Resource reference "?" when setting widget attributes.

2011-06-08 Thread Danny D
Thanks Kostya, I think I'm doing pretty much what you said (I'll check again), I'm trying to use the "?foo" reference to dynamically set the style of an individual view or view-group. 1) I've created my own fixed styles, there are three of these. I want to select one of the three by setting the

[android-developers] Use of the Resource reference "?" when setting widget attributes.

2011-06-08 Thread Danny D
Hi, I'm trying to set a widget's "style" attribute with a reference to a custom attribute that's been loaded with a real-concrete style. The Android SDK docs show an explicit example for just setting the textColor attribute based on a style reference: I'm trying to do this for the entire widg

[android-developers] Switching styles and themes

2011-06-02 Thread Danny D
I've setup my widgets to all reference a style/theme that I've created in "styles.xml", the individual buttons look something like this: Notice that they're all pointed at a named style, "Custom_xxx" which is defined in styles.xml with an inheritance structure as described in the

Re: [android-developers] Phone for development

2011-04-25 Thread Danny Pimienta
Raghav, All devices work for development use except those on AT&T because they disable to option to allow sideloading of apps. I personally still user a Nexus One as my developers phone since it's pure Google and it is "supposed" to get updates faster. On Sat, Apr 23, 2011 at 4:58 PM, Raghav Sood

Re: [android-developers] Re: Search dialog and searching within the same activity

2011-04-22 Thread Danny Schimke
Perfect, I read most parts of the search dialog documentation but I have not seen this very important part for me. Now it works like I wanted. Thanks a lot! Now I am really happy! -Danny Schimke 2011/4/22 Nikolay Elenkov > On Fri, Apr 22, 2011 at 5:14 PM, Danny S. > wrote: > &g

[android-developers] Re: Search dialog and searching within the same activity

2011-04-22 Thread Danny S.
activity that opened the map activity. Yesterday, late night, I thought about this... should I finish() the "search result" activity within the onCreate() and give back the results to the first one? But how can I do this, I not called it using startActivityForResult(). Thank you very muc

[android-developers] Search dialog and searching within the same activity

2011-04-21 Thread Danny S.
where the search was executed? Because when the user uses the back button the same (map) view is shown again, but he should go to the activity where the map activity was called from. Hope you can help! Thanks a lot! -Danny Schimke -- You received this message because you are subscribed to the

[android-developers] Finding ant_rules_r3.xml?

2011-03-30 Thread Danny D
Hi, I'm working on a continuous integration system (Hudson) and I'm trying to debug some existing build configurations. I'm looking for the "ant_rules_r3.xml" file that's described in a number of posts and trying to determine how it's configured. I'm not finding these in any of the android-sdk l

[android-developers] Re: Question about registering for location updates

2011-03-13 Thread Danny S.
That was really helpful! Thanks a lot! -Danny S. On 13 Mrz., 19:20, TreKing wrote: > On Sun, Mar 13, 2011 at 12:56 PM, Danny S. > wrote: > > > An other and my last question is: if I have set the distance AND > > time interval - must both conditions be true that onLoc

[android-developers] Re: Question about registering for location updates

2011-03-13 Thread Danny S.
Thank you very much! I'll do this ;-) An other and my last question is: if I have set the distance AND time interval - must both conditions be true that onLocationChanged() is called, or only one? (AND or OR?) Thanks a lot! -Danny On 13 Mrz., 13:16, lbendlin wrote: > You have to un

[android-developers] Question about registering for location updates

2011-03-12 Thread Danny S.
distance or fix interval changes, I need to call requestLocationUpdates again with the new values. Do I have to unregister from the listener first or is it overridden by the new request call? Thanks a lot! -Danny -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: Need help refresh different activity's when updating the database

2011-02-24 Thread Danny S.
r my views from there based on the data I fetch only once at startup. It sounds really good :D Thanks, maybe there will be comments from more users ;-) -Danny S. On 24 Feb., 20:45, Justin Anderson wrote: > Sounds to me like the cleanest approach would be to rewrite it so that each > tab i

[android-developers] Need help refresh different activity's when updating the database

2011-02-24 Thread Danny S.
activity C from activity B and call a method with the given row ids to make a database refresh for activity C with every state change!? Hope someone can help and discuss ;-)! -Danny S. -- You received this message because you are subscribed to the Google Groups "Android Developers" g

[android-developers] Re: Schedule notification instead of permanently check

2011-02-02 Thread Danny S.
Hi, for information: I changed the android:installingLocation in the AndroidManifest.xml to "internalOnly" and now the broadcast received successfully. Installing the app on external storage was the reason like expected after I read the docs. -Danny S. On Feb 2, 1:06 pm, "D

[android-developers] Re: Schedule notification instead of permanently check

2011-02-02 Thread Danny S.
Hey Kostaya, wow, thanks. It seems I'll be forced don't support external storage. There is really a conflict between the statements... I don't know such missunderstandings by Google ^^ Thanks a lot for this Kostaya! You helped me so many times with solutions and important informat

[android-developers] Re: Schedule notification instead of permanently check

2011-02-02 Thread Danny S.
tion.html What would you do? Thanks a lot! -Danny On Feb 1, 11:40 am, "Danny S." wrote: > OMG, today I determined, that my "BootReceiver" is not called > again :'( But I changed nothing in relation with this :( it looks like > an issue to me. I don't

[android-developers] Re: Schedule notification instead of permanently check

2011-02-01 Thread Danny S.
oing something wrong here, cause I got it to work in past... -Danny S. On Jan 27, 4:33 pm, "Danny S." wrote: > Hi together, > > using a second receiver worked for me: > > ... >                 >                 >                 >          

[android-developers] Re: Handle preferences in BroadcastReceiver's

2011-01-31 Thread Danny S.
edure is bad and why? Thanks! -Danny S. On Jan 31, 1:36 pm, "Danny S." wrote: > Hi, > > I try to use my preferences within a broadcast receiver. I defined a > preferences activity thats build of a defined UI (layout xml alias > "prefrences.xml"). I am able to call the

[android-developers] Handle preferences in BroadcastReceiver's

2011-01-31 Thread Danny S.
ive method!(?). My aim is to create notifications based on preferences (vibration: on/off, sound: on/off, etc.) within the broadcast receiver. Hope someone can help me! Thanks! -Danny S. -- You received this message because you are subscribed to the Google Groups "Android Developers"

[android-developers] Re: Schedule notification instead of permanently check

2011-01-27 Thread Danny S.
handling corresponding actions but it seems this is the only way... Maybe it has to be like this, but somebody would explain to me ;-) Thanks! -Danny S. On 27 Jan., 16:19, "Danny S." wrote: > Kostya, > > yeah, I am with you and think my AndroidManifest looks correct. I > fig

[android-developers] Re: Schedule notification instead of permanently check

2011-01-27 Thread Danny S.
tart the emulator nothing happened... onReceive is not called. As said I'll try with my real device and give response ASAP. If it does not work I try using a second receiver that handles the boot action and nothing else... hope I can solve the problem soon ;-) Thanks for your help! -Danny S. On 2

[android-developers] Re: Schedule notification instead of permanently check

2011-01-27 Thread Danny S.
. I can try using a second receiver if it is ever possible, only for boot recognization. But this seems not the best way... My receiver should be able to differ between actions and do several things... Thanks a lot! -Danny S. On 27 Jan., 14:15, Kostya Vasilyev wrote: > Danny, > > You don

[android-developers] Re: Schedule notification instead of permanently check

2011-01-27 Thread Danny S.
Hey Kostya, you were right. I dont need to hold the intents in java, I can cancel it this way: mAlarmManager.cancel(PendingIntent.getBroadcast(this, intentId, myBroadcastIntent, 0)); Thanks a lot for this!!! ;-) -Danny S. On 20 Jan., 10:33, Kostya Vasilyev wrote: > Danny, > > Androi

[android-developers] Re: Schedule notification instead of permanently check

2011-01-27 Thread Danny S.
r construct in the manifest incorrect? Hope you can help me, Thanks a lot! -Danny S. On 20 Jan., 10:33, Kostya Vasilyev wrote: > Danny, > > Android already keeps a global registry of pending intents, so keeping a > parallel hash map should not be necessary. > > To cancel an a

[android-developers] Re: Schedule notification instead of permanently check

2011-01-20 Thread Danny S.
intents in a HashMap, but I need the PendingIntent when I'll cancel the alarm and it worked. Maybe I have to optimize something, but now I understood how to work with the AlarmManager AND multiple scheduling tasks. Thans a lot! -Danny S. On 19 Jan., 17:26, Kostya Vasilyev wrote: > Danny,

[android-developers] Re: Schedule notification instead of permanently check

2011-01-19 Thread Danny S.
t.xml and wondered why the alarm is not fired ^^ But now it works, but only for the last data I set on the manager. Hope you can help, meanwhile I go home and do some searches on Google :D ´Thanks! -Danny S. On Jan 19, 10:49 am, "Danny S." wrote: > Hello Kostya, > > WOW, thank

[android-developers] Re: Schedule notification instead of permanently check

2011-01-19 Thread Danny S.
Hello Kostya, WOW, thank you very much, I'll have a look and reply with results and questions if I have ;-) -Danny S. On Jan 19, 9:09 am, Kostya Vasilyev wrote: > 19.01.2011 10:07, Danny S. пишет: > > > Hi, > > > I have a service that is running in ba

[android-developers] Re: Customized Spinner and problems with its dropdown menu

2011-01-18 Thread Danny S.
he layout is broken/not usable. Thanks a lot for helping me! -Danny S. On Dec 6 2010, 9:22 pm, Danny Schimke wrote: > Hi, > > meanwhile I got help from someone other, he said: > > hello, > > > I remembered that I checked the source of android then, > >http://goo.gl/

[android-developers] Schedule notification instead of permanently check

2011-01-18 Thread Danny S.
ments"). Can I set a fix moment when the service should send the user a notification instead of listen/check all the time for (approximately) time identity? And a secondary question: how can I set "Autostart" for the applications service? Thanks a lot! -Danny S. -- You received this

[android-developers] Re: apkbuilder ?

2010-12-23 Thread Danny Backx
Thanks for this very clear message. I've been meaning to look into the library stuff. You might just have tempted me. Danny On Dec 23, 10:35 am, Xavier Ducrohet wrote: > The message you get running apkbuilder is a bit misleading I agree. > > I've been very tempted to sim

[android-developers] Re: apkbuilder ?

2010-12-23 Thread Danny Backx
;s very little I can do right now except ignoring the message. Is this the right conclusion or am I missing something ? Can someone note that leaving such messages (pointing to --help which isn't there) confuses people ? Thanks, Danny On Dec 21, 10:11 am, Mark Murphy wrote: > Step

[android-developers] apkbuilder ?

2010-12-21 Thread Danny Backx
t; recent build improvements including library projects. So can someone tell me how/where to "look at" this ? Thanks, Danny -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-d

[android-developers] Re: INSTALL_PARSE_FAILED_NO_CERTIFICATES on Android-2.3

2010-12-16 Thread Danny Backx
I found it, I added jarsigner -verbose -keystore ${HOME}/.android/debug.keystore - storepass android -signedjar $@ roadmap-unsigned.apk androiddebugkey to my Makefile, and this solves the problem. Thanks for pointing this out. Danny On Dec 16, 6:05 pm, Danny Backx wrote: > T

[android-developers] Re: INSTALL_PARSE_FAILED_NO_CERTIFICATES on Android-2.3

2010-12-16 Thread Danny Backx
Ah, found it. I added this line to my Makefile : jarsigner -verbose -keystore ${HOME}/.android/debug.keystore - storepass android -signedjar $@ roadmap-unsigned.apk androiddebugkey and that solves the problem. Thanks for pointing this out. Danny On Dec 16, 6:05 pm, Danny Backx

[android-developers] Re: INSTALL_PARSE_FAILED_NO_CERTIFICATES on Android-2.3

2010-12-16 Thread Danny Backx
an't seem to figure out from the XML files in the distribution how to trigger signing either. Can you help me with that ? Thanks, Danny On Dec 15, 10:42 pm, Jake Basile wrote: > Just to be sure, did you sign your > APK<http://developer.android.com/guide/publishing/app-signin

[android-developers] INSTALL_PARSE_FAILED_NO_CERTIFICATES on Android-2.3

2010-12-15 Thread Danny Backx
fix ? The application is RoadMap (http://sf.net/projects/roadmap, its source is there). An APK file that fails is at http://danny.backx.info/download/roadmap/roadmap.apk . Thanks, Danny -- You received this message because you are subscribed to the Google Groups "Android Developers&quo

Re: [android-developers] Re: about gps

2010-12-15 Thread Danny Schimke
work usage (getLastKnownLocation("network")) Hope it is the sulution! -Danny Schimke 2010/12/15 Android > Am facing the same problem , can you tell me how did you solve this > problem... > > > > On Nov 24, 6:22 am, Leon Li wrote: > > thanks ip332 and Dan: > > i have

Re: [android-developers] Re: LocationListener's onLocationChanged() is not called (geo fix)

2010-12-14 Thread Danny Schimke
Ah ok, I understand. So I'll use GPS indtead of network provider while I am developing the application. @ip332 Thank you very much! Maybe another question: how much differs the accurace of the gps to the network provider (maybe about in meters)? Thanks a lot! -Danny Schimke 2010/12/14

Re: [android-developers] Re: LocationListener's onLocationChanged() is not called (geo fix)

2010-12-14 Thread Danny Schimke
How can I simulate changes in the network location and why does it not changed, but GPS changed? THX, -Danny Schimke 2010/12/14 ip332 > Because there were no "changes" in the network location. > > On Dec 14, 7:40 am, Danny Schimke > wrote: >

[android-developers] Re: LocationListener's onLocationChanged() is not called (geo fix)

2010-12-14 Thread Danny Schimke
? Permission is set in AndroidManifest, so this can't be the issue. Thanks a lot! -Danny Schimke 2010/12/14 Danny Schimke > Hi, > > I have a Service that will run in Background even if the application is > closed. I started the service and I can see it in the "running ser

[android-developers] LocationListener's onLocationChanged() is not called (geo fix)

2010-12-14 Thread Danny Schimke
rvice(serviceIntent); Does anybody knows why it does not work? Hope someone can help. Thank you very much in advance! -Danny Schimke -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-de

Re: [android-developers] Re: Best way to store data in database

2010-12-08 Thread Danny Schimke
Yeah, that sounds correct. I was not shure that this is the problem, cause its only a object reference but may something is done with the listener by calling telephonyManager.listen(). -Danny 2010/12/8 Kostya Vasilyev > These two lines are backwards: > > > telephonyManager.lis

Re: [android-developers] Re: Best way to store data in database

2010-12-08 Thread Danny Schimke
What is not working? Any concrete exceptions in debug view? Like Dan says we need more information. Does a exception occur? -Danny 2010/12/8 DanH > You never compiled it? Never executed it? > > (Some symptoms would be helpful.) > > On Dec 7, 9:35 am, nirav

Re: [android-developers] Best way to store data in database

2010-12-07 Thread Danny Schimke
name into the database and then there is a problem... What do you think about a separate database table? Not good? Thank you! -Danny Schimke 2010/12/7 Kostya Vasilyev > Danny, > > The values in R can change as you add and remove resources. > > I'd say store color names,

[android-developers] Best way to store data in database

2010-12-07 Thread Danny Schimke
od way and the user is able to add own colors to the application. I don't know what is the best way to store this. What are your experiences? Thank you very much! -Danny Schimke -- You received this message because you are subscribed to the Google Groups "Android Developers" gro

Re: [android-developers] Re: Customized Spinner and problems with its dropdown menu

2010-12-06 Thread Danny Schimke
But now its really late, I am tired and try this tomorrow. I'll give responses ;-) Thanks you for further help! -Danny Schimke 2010/12/6 Danny Schimke > Hey poohtbear, > > thank you very much, I am downloading the sources you prepared for version > 2.2. Maybe I find out more

Re: [android-developers] http proxy

2010-12-06 Thread Danny Schimke
ts DNS. Instead use the IP address. Hope you'll get it ;-) -Danny Schimke 2010/12/6 Satya Prasad > Try in the following way. > setprop net.gprs.http-proxy http://10.201.51.54:8080 > > > > On Sat, Dec 4, 2010 at 8:13 PM, Seb wrote: > >> I'm trying

Re: [android-developers] Re: Customized Spinner and problems with its dropdown menu

2010-12-06 Thread Danny Schimke
am really confused at the moment why it does not work. If I replace the RadioButton with a TextView it works, but RadioButton or CheckBox does not work. It seems they corrupt the functionality of the item. Thank you for helping me! -Danny Schimke 2010/12/6 poohtbear > i'm not sure regardin of w

Re: [android-developers] Re: Customized Spinner and problems with its dropdown menu

2010-12-06 Thread Danny Schimke
shown. Is there a way to use the default dropdown UI with radio buttons and fill it up with custom view elements on the left side? Thanks a lot! -Danny Schimke 2010/12/6 poohtbear > That's a bit strange. > According to the code of spinner: > @Override >public boo

[android-developers] Customized Spinner and problems with its dropdown menu

2010-12-06 Thread Danny Schimke
e radiobutton of one item. Set the selection works very well, but I have to exit the menu pressing escape in my emulator. Hope someone can help, I need a way to close the dropdown menu programatically. Does anybody have the same problem? Thanks a lot! -Danny Schimke -- You received this

[android-developers] Re: Signup for C2DM ?

2010-07-31 Thread Danny Shmueli
this whitelist. > > I'd like to know what's going on.  Even a "thanks for your request. > you are number 1,423,423 in the queue" would be nice. > > J > > On Jul 16, 8:03 pm, Danny Shmueli wrote: > > > Will someone at Google wake up! > > Seem

[android-developers] Re: Signup for C2DM ?

2010-07-16 Thread Danny Shmueli
Will someone at Google wake up! Seems that some developers can already take advantage of the c2dm network while others are just hung out to dry in the sun. I've been waiting for 2 month now (and filled the sign up form couple times). My application is nearly ready for publishing but it is worthless

[android-developers] Re: C2DM example ChromeToPhone, contents of "dataMessagingToken.txt"

2010-07-16 Thread Danny
Good luck with the signup. I've been asking google for a c2dm account for 2 month now. My application is ready for publishing. But is worthless without the c2dm :( -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, se

[android-developers] data passed to handler overwritten?

2010-07-15 Thread Danny Backx
Am I missing something obvious ? Danny class PolygonData { int count; int filled; float[] points; }; Handler DrawPolygonHandler = new Handler() { @Override public void handleMe

  1   2   >