Re: [android-developers] Re: Compatibility mode issues on 4.x

2013-04-18 Thread Mark Murphy
as a Nexus S (hdpi), etc., as they are all the same basic screen size, within fractions of an inch. Screen size != screen density. In fact, there is no correlation between the two. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http

Re: [android-developers] Re: Compatibility mode issues on 4.x

2013-04-17 Thread Mark Murphy
, visit https://groups.google.com/groups/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 4.7 Available! -- -- You received

Re: [android-developers] How to keep WiFi on and let screen go to sleep?

2013-04-10 Thread Mark Murphy
the socket? Say, courtesy of an onPause() or onStop() call when the screen turns off? -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 4.7 Available

Re: [android-developers] Re: Proper documentation for SQLite usage missing - I need guidance

2013-04-05 Thread Mark Murphy
://stackoverflow.com/a/4377116/115145 If not, why is there no information on the Android Developer site that specifies that you could rely on using SQLite 3.7.0 syntax when you are using level 11 as the minSdkLevel? Because nobody typed up that portion of the documentation. -- Mark Murphy (a Commons Guy) http

Re: [android-developers] Re: zygote preloading jars

2013-03-23 Thread Mark Murphy
. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 4.7 Available! -- -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] How to solve the issue with Dalvik compiler limitation on 64K methods?

2013-03-22 Thread Mark Murphy
-developers+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android

Re: [android-developers] Re: zygote preloading jars

2013-03-22 Thread Mark Murphy
version of Android that adds in this library. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 4.7 Available! -- -- You received this message

Re: [android-developers] Is there a way to dismiss the Contextual Action Bar (CAB) menu?

2013-03-22 Thread Mark Murphy
/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 4.7 Available! -- -- You received this message because you are subscribed

Re: [android-developers] Re: How to display Options Menu Vertically

2013-03-21 Thread Mark Murphy
to the Google Groups Android Developers group. To unsubscribe from this group and stop receiving emails from it, send an email to android-developers+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out. -- Mark Murphy (a Commons Guy) http

Re: [android-developers] zygote preloading jars

2013-03-21 Thread Mark Murphy
source code. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 4.7 Available! -- -- You received this message because you are subscribed

Re: [android-developers] How to solve the issue with Dalvik compiler limitation on 64K methods?

2013-03-21 Thread Mark Murphy
an email to android-developers+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide

Re: [android-developers] version problem for xml themes ,

2013-03-16 Thread Mark Murphy
://groups.google.com/groups/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 4.6 Available! -- -- You received this message because

Re: [android-developers] version problem for xml themes ,

2013-03-16 Thread Mark Murphy
. On Sat, Mar 16, 2013 at 3:34 PM, Kaushik Pendurthi kaushiks...@gmail.com wrote: But when i do step 2 i get this error : error: Error retrieving parent for item: No resource found that matches the given name 'android:style/ Theme.Holo.Light'. On Sat, Mar 16, 2013 at 3:20 PM, Mark Murphy

Re: [android-developers] Disable or Enable Applications through our Application.

2013-03-15 Thread Mark Murphy
On Fri, Mar 15, 2013 at 3:52 AM, Seshu s.seshu...@gmail.com wrote: Is there option Disable or Enable other Android Applications through our Application? Fortunately, no. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog

Re: [android-developers] Re: OutofMemory Excepton error in android

2013-03-14 Thread Mark Murphy
space. The only way that your scenario would prove your claim is if your individual allocations in the whole boat load of memory are larger than the request that then fails. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http

Re: [android-developers] Re: Can this variable become null?

2013-03-14 Thread Mark Murphy
on the topic over the past few years. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 4.6 Available! -- -- You received this message because you

Re: [android-developers] Re: How to replace the ItemizedOverlay with onTap event

2013-03-13 Thread Mark Murphy
+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_

Re: [android-developers] Re: How to replace the ItemizedOverlay with onTap event

2013-03-13 Thread Mark Murphy
of the marker, as you created it. You can get a Projection that will help you convert that to an on-screen pixel coordinate. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android

Re: [android-developers] QR Code or NFC Tag: How to initiate download of a file

2013-03-09 Thread Mark Murphy
to have an NFC tag point to a URL that, in turn, points to an APK file. At best, all this will do is download the file. The user will still have to manually indicate that they want to install it, manually go through the installation steps, and manually start the app once installed. -- Mark Murphy

Re: [android-developers] Re: My BroadcastReceiver receiver not getting called after phone boots, any ideas?

2013-03-08 Thread Mark Murphy
to android-developers+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide

Re: [android-developers] Re: My BroadcastReceiver receiver not getting called after phone boots, any ideas?

2013-03-08 Thread Mark Murphy
is android.intent.action.BOOT_COMPLETED. That's not to say that the manifest has no other issues. For example, the ALTERNATIVE stuff is downright bizarre. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy

Re: [android-developers] Enumerate sd cards

2013-03-08 Thread Mark Murphy
card path. There is nothing in the Android SDK for this, at least at the present time. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 4.6

Re: [android-developers] Why can't I do complete CTS test?

2013-03-07 Thread Mark Murphy
options, visit https://groups.google.com/groups/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 4.6 Available! -- -- You received

Re: [android-developers] Handling SQLiteOpenHelper

2013-03-07 Thread Mark Murphy
SQLiteOpenHelper instance means one SQLiteDatabase instance, and SQLiteDatabase is designed to manage operations from multiple threads. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide

Re: [android-developers] API to access remove a device administrator

2013-03-07 Thread Mark Murphy
in the process. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 4.6 Available! -- -- You received this message because you are subscribed

Re: [android-developers] Receiving Intent

2013-03-07 Thread Mark Murphy
app, it says it could not find /mnt/sdcard/mnt/sdcard/test.txt Apparently there is a bug in your Java code where you are opening the file. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy

Re: [android-developers] Re: API to access remove a device administrator

2013-03-07 Thread Mark Murphy
. If you wish, in turn, to attempt to contribute those changes back to the Android Open Source Project, instructions for doing so can be found on http://source.android.com. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http

Re: [android-developers] How to programatically install an app (apk)

2013-03-07 Thread Mark Murphy
an app via the market URI, I have tried half a dozen examples and nothing works. That's not supposed to work. You can lead the user to the Play Store page for an app, but you cannot force the user to download it. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy

Re: [android-developers] How to block an Intent/Action until complete?

2013-03-07 Thread Mark Murphy
the uninstallApp() dialog until that is complete before the app begins to install? You can't. You will need to wait until you receive word from the OS, from an ACTION_PACKAGE_REMOVED broadcast, that the uninstall was done by the user, before you proceed trying to install the app. -- Mark Murphy (a Commons Guy

Re: [android-developers] std::locale().name() returns C

2013-03-07 Thread Mark Murphy
emails from it, send an email to android-developers+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy

Re: [android-developers] Tapping the overflow button make the action mode finish.

2013-03-06 Thread Mark Murphy
Groups Android Developers group. To unsubscribe from this group and stop receiving emails from it, send an email to android-developers+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com | http

Re: [android-developers] Make a one app appliance (prevent quitting app)

2013-03-06 Thread Mark Murphy
+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version

Re: [android-developers] setAutoExposureLock method is not found in ICS

2013-03-06 Thread Mark Murphy
https://groups.google.com/groups/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 4.6 Available! -- -- You received this message

Re: [android-developers] Motorola Razr Maxx HD - freezes?

2013-03-05 Thread Mark Murphy
in JNI. Where can I rent one of these devices? It doesn't look like TestDroid Cloud or DeviceAnywhere have the RAZR Maxx HD, just the Droid RAZR. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The

Re: [android-developers] Re: two activities running at same time

2013-03-02 Thread Mark Murphy
in the first place. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 4.6 Available! -- -- You received this message because you are subscribed

Re: [android-developers] Re: two activities running at same time

2013-03-02 Thread Mark Murphy
that it is conceivable that SMS broadcasts include FLAG_INCLUDE_STOPPED_PACKAGES, though that would surprise me. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android

Re: [android-developers] Obfuscating code

2013-03-01 Thread Mark Murphy
for that keyword. Correct. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 4.6 Available! -- -- You received this message because you

Re: [android-developers] Detect activity was started by the Android launcher

2013-02-28 Thread Mark Murphy
app's package name is what you expect and that your app's signing key matches what you expect. See http://stackoverflow.com/a/6203440/115145 for the latter. Again, all of these checks can be deactivated if somebody puts their mind to them. -- Mark Murphy (a Commons Guy) http://commonsware.com

Re: [android-developers] Is there a way to speed up AVD?

2013-02-21 Thread Mark Murphy
/groups/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 4.6 Available! -- -- You received this message because you are subscribed

Re: [android-developers] Setting Up the ADT Bundle Issue (Eclipse Error)

2013-02-21 Thread Mark Murphy
. To unsubscribe from this group and stop receiving emails from it, send an email to android-developers+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http

Re: [android-developers] upgrade to 4.2.2 -- Eclipse sees device offline and unknown

2013-02-21 Thread Mark Murphy
this group and stop receiving emails from it, send an email to android-developers+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http

Re: [android-developers] Re: upgrade to 4.2.2 -- Eclipse sees device offline and unknown

2013-02-21 Thread Mark Murphy
? -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 4.6 Available! -- -- You received this message because you are subscribed to the Google

Re: [android-developers] loading SharedPreferences in Fragment

2013-02-21 Thread Mark Murphy
...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 4.6

Re: [android-developers] Re: upgrade to 4.2.2 -- Eclipse sees device offline and unknown

2013-02-21 Thread Mark Murphy
the tablet sorry, you must be on the primary account to activate USB debugging. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 4.6 Available

Re: [android-developers] Posts from new users not passing through moderation?

2013-02-20 Thread Mark Murphy
/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Android Training in NYC: http://marakana.com/training/android/ -- -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Re: Creating new intent with data android:scheme...

2013-02-20 Thread Mark Murphy
://groups.google.com/groups/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Android Training in NYC: http://marakana.com/training/android/ -- -- You received this message because you

Re: [android-developers] Posts from new users not passing through moderation?

2013-02-20 Thread Mark Murphy
, 2013 at 7:18 AM, Mark Murphy mmur...@commonsware.com wrote: I haven't seen a moderation queue flush in some time, though they may have less volume than before and therefore are not quite as noticeable, at least to me. I was thinking about this just a few days ago, when I was mentioning this group

Re: [android-developers] loading .swf file in webview, my code works for 2.3.3 but not working for 4.0.4

2013-02-20 Thread Mark Murphy
...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Android Training in NYC: http://marakana.com/training/android

Re: [android-developers] How use my app's notifications instead of calendar app's?

2013-02-20 Thread Mark Murphy
to register for something (a broadcast) or insert my own intent, that would work better. Is that possible? No. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Android Training in NYC: http

Re: [android-developers] How use my app's notifications instead of calendar app's?

2013-02-20 Thread Mark Murphy
to spend. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Android Training in NYC: http://marakana.com/training/android/ -- -- You received this message because you are subscribed to the Google Groups

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

2013-02-20 Thread Mark Murphy
from it, send an email to android-developers+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Android

Re: [android-developers] Re: MediaPlayer suddenly stopped working in Android 4.2

2013-02-19 Thread Mark Murphy
group. To unsubscribe from this group and stop receiving emails from it, send an email to android-developers+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy

Re: [android-developers] DialogFragment

2013-02-18 Thread Mark Murphy
...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy In questi siti web puoi chiedere o rispondere a domande relative allo

Re: [android-developers] DialogFragment

2013-02-18 Thread Mark Murphy
options, visit https://groups.google.com/groups/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy In questi siti web puoi chiedere o rispondere a domande relative allo sviluppo di

Re: [android-developers] import android.net.NetworkUtils;

2013-02-18 Thread Mark Murphy
receiving emails from it, send an email to android-developers+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com

Re: [android-developers] Debugging beta apps

2013-02-17 Thread Mark Murphy
own Acralyzer, that do not require the use of Google Spreadsheets. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Localized Android Question-and-Answer Sites: http://www.andglobe.com -- -- You

Re: [android-developers] what versions of sqllite is used in android?

2013-02-16 Thread Mark Murphy
. For more options, visit https://groups.google.com/groups/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 4.5 Available! -- -- You

Re: [android-developers] Activity and Application life-cycle

2013-02-10 Thread Mark Murphy
. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 4.5 Available! -- -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Activity and Application life-cycle

2013-02-10 Thread Mark Murphy
what I put the app to sleep and when i wake up means. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 4.5 Available! -- -- You received

Re: [android-developers] The method bindAppWidgetId(int, ComponentName) is undefined for the type AppWidgetManager error on Jellybean

2013-02-09 Thread Mark Murphy
. To unsubscribe from this group and stop receiving emails from it, send an email to android-developers+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http

Re: [android-developers] Google maps api v2 issue

2013-02-09 Thread Mark Murphy
of Maps V2 working projects, from the aforementioned book: https://github.com/commonsguy/cw-omnibus/tree/master/MapsV2 -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android

Re: [android-developers] onCreateOptionsMenu being hit too many times

2013-02-09 Thread Mark Murphy
Groups Android Developers group. To unsubscribe from this group and stop receiving emails from it, send an email to android-developers+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com

Re: [android-developers] onCreateOptionsMenu being hit too many times

2013-02-09 Thread Mark Murphy
to create separate copies. Get your old ones from the FragmentManager, and only create them if the FragmentManager does not already have them. On Sat, Feb 9, 2013 at 3:29 PM, FiltrSoft kri...@gmail.com wrote: On Saturday, February 9, 2013 2:39:17 PM UTC-5, Mark Murphy (a Commons Guy) wrote: You

Re: [android-developers] Re: onCreateOptionsMenu being hit too many times

2013-02-09 Thread Mark Murphy
an email to android-developers+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide

Re: [android-developers] Re: onCreateOptionsMenu being hit too many times

2013-02-09 Thread Mark Murphy
was a little in the dark on the best practices. I was using this tutorial as base for what I needed to do: http://tamsler.blogspot.com/2011/10/android-viewpager-and-fragments.html On Saturday, February 9, 2013 4:56:57 PM UTC-5, Mark Murphy (a Commons Guy) wrote: Well, normally, you don't even need

Re: [android-developers] problem getting Google API V1 key

2013-02-09 Thread Mark Murphy
to give me an SHA fingerprint!! I need an MD5 fingerprint. Why is this happening? It is happening because you are running Java 7, and the keytool command emits SHA-1 by default. Add -v to your command line switches to get an MD5 fingerprint. -- Mark Murphy (a Commons Guy) http://commonsware.com

Re: [android-developers] Google maps api v2 issue

2013-02-08 Thread Mark Murphy
that is part of the firmware or installed off the Play Store. Is this a move by google to force apps to be distributed only via google play? No. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy

Re: [android-developers] Unable to obtain Google Maps Android v1 API Key

2013-02-07 Thread Mark Murphy
+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_

Re: [android-developers] Unable to obtain Google Maps Android v1 API Key

2013-02-07 Thread Mark Murphy
February 2013 17:02:50 UTC+1, Mark Murphy (a Commons Guy) wrote: It just worked for me. Make sure that you are using MD5 -- if you have Java 7 installed, you might be getting the SHA-1 hash instead, for example. On Thu, Feb 7, 2013 at 10:28 AM, Simon Giddings mr.s.g...@gmail.com wrote: I have

Re: [android-developers] External video output (USB/HDMI/etc)

2013-01-31 Thread Mark Murphy
from this group and stop receiving emails from it, send an email to android-developers+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com

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

2013-01-30 Thread Mark Murphy
Groups Android Developers group. To unsubscribe from this group and stop receiving emails from it, send an email to android-developers+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/groups/opt_out. -- Mark Murphy (a Commons Guy) http://commonsware.com

Re: [android-developers] ArrayAdapter in background thread

2013-01-28 Thread Mark Murphy
. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Här kan du ställa och svara på frågor om applikationsutveckling på Android: http://www.andglobe.com -- -- You received this message because you

Re: [android-developers] ArrayAdapter in background thread

2013-01-27 Thread Mark Murphy
if it is already attached to an AdapterView. You can modify the ArrayList directly from a background thread (not via the ArrayAdapter), then call notifyDataSetChanged() on the main application thread when that work is done. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com

Re: [android-developers] End user ANR stack trace has no line number

2013-01-24 Thread Mark Murphy
development machine and examine LogCat. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Android Training in NYC: http://marakana.com/training/android/ -- You received this message because you

Re: [android-developers] End user ANR stack trace has no line number

2013-01-24 Thread Mark Murphy
LogCat, the Developer Console, BugSense, etc. AFAIK. So long as you are testing your production APK on the device, the stack trace as seen in LogCat should be the same as what would show up in the Developer Console. If you have any evidence to the contrary, please post a link. -- Mark Murphy

Re: [android-developers] End user ANR stack trace has no line number

2013-01-24 Thread Mark Murphy
with your ProGuard setup -- you may need to use ReTrace to translate the stack trace into something usable. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Android Training in NYC: http://marakana.com

Re: [android-developers] referencing a nested class in xml

2013-01-24 Thread Mark Murphy
-- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Android Training in NYC: http://marakana.com/training/android/ -- -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] Click events doesn't work on a button after Animation

2013-01-23 Thread Mark Murphy
API level. If you take the time to read what I wrote, you will notice that I pointed you to the NineOldAndroids backport of the ViewPropertyAnimator framework. NineOldAndroids works going back to API Level 1. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http

Re: [android-developers] View SQLite database files possible with external DB. Software?

2013-01-23 Thread Mark Murphy
a database backup feature to your app that copies the database to external storage. Or, put the database on external storage in the first place during early development. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http

Re: [android-developers] End user ANR stack trace has no line number

2013-01-23 Thread Mark Murphy
means. In terms of testing whether you can now get access to the lines from the stack trace, divide by zero somewhere to force a crash and then go through the process of examining the log. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com

Re: [android-developers] Click events doesn't work on a button after Animation

2013-01-22 Thread Mark Murphy
@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http

Re: [android-developers] [Google Maps API v2] Info windows Title

2013-01-22 Thread Mark Murphy
...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_

Re: [android-developers] End user ANR stack trace has no line number

2013-01-22 Thread Mark Murphy
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 this group at http://groups.google.com/group/android-developers?hl=en -- Mark Murphy (a Commons Guy) http

Re: [android-developers] Menus handled differently in 4.2 on phone and tablet?

2013-01-21 Thread Mark Murphy
, using something inside the UI of your activity as a replacement. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Här kan du ställa och svara på frågor om applikationsutveckling på Android: http

Re: [android-developers] LocationManager RequestLocation Updates issue

2013-01-20 Thread Mark Murphy
-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy

Re: [android-developers] Re: how to distribute a Library Project WITHOUT source code (as jar file) as some sort of SDK?

2013-01-20 Thread Mark Murphy
, and it does not contain an R class. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Android Training in NYC: http://marakana.com/training/android/ -- You received this message because you are subscribed

Re: [android-developers] Re: how to distribute a Library Project WITHOUT source code (as jar file) as some sort of SDK?

2013-01-20 Thread Mark Murphy
On Sun, Jan 20, 2013 at 1:42 PM, Joe Bowbeer joe.bowb...@gmail.com wrote: The feature that we're awaiting is the .aar binary packaging for libraries, Which hopefully will be ready by next International Talk Like a Pirate Day. :-) -- Mark Murphy (a Commons Guy) http://commonsware.com | http

Re: [android-developers] GCM

2013-01-19 Thread Mark Murphy
might also wish to explain whether you plan to create a GCM like service as part of a customized Android OS, as a system app for use on rooted devices, or if you are attempting to pull this off as an ordinary SDK app. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com

Re: [android-developers] Re: intel-accelerated emulator + maps API with SDK v21

2013-01-18 Thread Mark Murphy
. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Aqui estão alguns sites onde você pode perguntar ou responder dúvidas sobre desenvolvimento de aplicações para Android: http://www.andglobe.com -- You

Re: [android-developers] Re: Application.onCreate Method Randomly Called?

2013-01-18 Thread Mark Murphy
, they should be used as a cache for persistent data or for transient purposes only. Is there something other than PreferenceManager.getDefaultSharedPreference to do this? SharedPreferences are persistent, assuming that you use commit() or apply(). -- Mark Murphy (a Commons Guy) http://commonsware.com

Re: [android-developers] Permissions Security Exception

2013-01-18 Thread Mark Murphy
problem, IMHO. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Aqui estão alguns sites onde você pode perguntar ou responder dúvidas sobre desenvolvimento de aplicações para Android: http

Re: [android-developers] Re: Application.onCreate Method Randomly Called?

2013-01-18 Thread Mark Murphy
as the basis of a filename, for the XML file which contains the persisted SharedPreferences. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Aqui estão alguns sites onde você pode perguntar ou responder

Re: [android-developers] Re: Application.onCreate Method Randomly Called?

2013-01-18 Thread Mark Murphy
operation. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Aqui estão alguns sites onde você pode perguntar ou responder dúvidas sobre desenvolvimento de aplicações para Android: http

Re: [android-developers] Launching play store for specific product

2013-01-17 Thread Mark Murphy
apps around that respond to market:// requests, that is the user's choice, and the user can use those apps. The choice is the user's, not yours. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy

Re: [android-developers] Application.onCreate Method Randomly Called?

2013-01-17 Thread Mark Murphy
To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog

Re: [android-developers] Re: Application.onCreate Method Randomly Called?

2013-01-17 Thread Mark Murphy
on account of the alarm having triggered. Having said that, the timestamps for both events (onCreate and the alarm) are identical. Are you messing around with android:process attributes in the manifest? If so, each process gets its own Application instance. Also, if so, please reconsider. -- Mark

Re: [android-developers] Integrate Wireless printer(via Bluetooth/WiFi) with Android Application.

2013-01-16 Thread Mark Murphy
. 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 this group at http://groups.google.com/group/android-developers?hl=en -- Mark Murphy (a Commons Guy

Re: [android-developers] Retrieving current URL from chrome (or browser). Use ContentProvider? Or, other method?

2013-01-16 Thread Mark Murphy
, either. I don't see that ContentProvider for browser provides anything with respect to the current URL. Would the last item in the history (getAllVisitedUrls(...)) tell me this? AFAIK, Chrome does not use that ContentProvider. -- Mark Murphy (a Commons Guy) http://commonsware.com | http

Re: [android-developers] Re: Toast not showing on Samsung Galaxy S3 (latest update 4.1.2)

2013-01-15 Thread Mark Murphy
at http://groups.google.com/group/android-developers?hl=en -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 4.5 Available! -- You received

Re: [android-developers] Toast not showing on Samsung Galaxy S3 (latest update 4.1.2)

2013-01-14 Thread Mark Murphy
@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http

  1   2   3   4   5   6   7   8   9   10   >