[android-developers] Re: Why are new apps not featured on Android market anymore?

2012-02-13 Thread Simon Jackson
it's not about helping little developers, but about helping users. If app gems are lost before they can be found, then why spend hundreds just to play the latest chicken licken rio? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post

[android-developers] Re: installing APK without eclipse/android SDK

2012-02-13 Thread Simon Jackson
They have to enable non market sources under developer settings on the phone, and then any .apk should install if it is valid. This is the only way to install from apk without a market signing as I understand it. -- You received this message because you are subscribed to the Google Groups "Andr

Re: [android-developers] Fascism against small screens

2012-01-30 Thread Simon Jackson
By the way I think AudioTrack and maybe some of the Service setForground (not yet sure of mi9n API) are the limits of the app I am developing so 1.5 maybe. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email

Re: [android-developers] Fascism against small screens

2012-01-30 Thread Simon Jackson
I'm small screen at api 7, and intend to add code to eliminate big screen usage in protest! -- 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 g

[android-developers] Fascism against small screens

2012-01-30 Thread Simon Jackson
http://developer.android.com/guide/appendix/market-filters.html#manifest-filters looks as though even if your app may work on a small screen, unless you add this attribute market will tell small screen user to take a running jump! -- You received this message because you are subscribed to the

[android-developers] I'm starting my first real app questions and sound

2012-01-18 Thread Simon Jackson
So with an example loaded, what needs to be changed to make the icon and all identifying app text be renamed to "myapp"? I need to create audio samples (by algorithm) on the fly to play through the speaker, and need to prevent the screen from dimming and sleeping/locking while plugged in usb, i

[android-developers] Re: Does android os 2.1 support bluetooth printing

2011-06-20 Thread Simon Jackson
Should be something like 1. Find UUID of printer device service 2. Open encrypted rfcomm to already paired device (so don't need BT admin permission only BT permission) 3. Send byte stream over the socket 4. Close socket. You will need the escape codes for the printer too depending on if it does

[android-developers] Re: LVL and WIFI-only tablets

2011-06-18 Thread Simon Jackson
Don't rent. Buy. Then go sub-prime ;) -- 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...@goog

Re: [android-developers] Re: How can I know when the home button has been pressed?

2011-06-11 Thread Simon Jackson
But he probly needs to make a political irritation screen for the department of grope safety. With a casino link. -- 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 u

[android-developers] Re: A tricky but simple solution for who requires modal dialog

2011-06-03 Thread Simon Jackson
Any droid developer would consider an activity, with a check for the modal activity in the app being displayed, and so switch to it, and finish. -- 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: How to close all activities on android app

2011-05-19 Thread Simon Jackson
make a parent Activity class to derive all your app classes from, and have a static Activity head, and a private Activity linkField. Then a static void closeListOfActivity() method This also allows next activity in class jump functionality. Well it would if the instance would stay unkilled. Ha

[android-developers] Re: Problem when coming back to activity after changing font in Galaxy S

2011-05-19 Thread Simon Jackson
how about to singleton something static Activity me; oncreate() if(me==null) me = this else me. finish(); or such Cheers Jacko -- 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@goo