[android-developers] Re: Android

2009-08-28 Thread admin.androidsl...@googlemail.com
I think you might have missed it. --~--~-~--~~~---~--~~ 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, sen

[android-developers] Re: Android

2009-08-28 Thread Dan Sherman
lol On Fri, Aug 28, 2009 at 9:10 PM, admin.androidsl...@googlemail.com < admin.androidsl...@googlemail.com> wrote: > > I think you might have missed it. > > > --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android

[android-developers] Re: Android

2009-08-28 Thread Carl Whalley
Theres an interactive timeline here: http://www.androidacademy.com/3-features/40-current/49-article-what-makes-android-tick On Aug 29, 12:48 am, Nikamov wrote: > Just wondering on the release date of Android? --~--~-~--~~~---~--~~ You received this message because

[android-developers] Re: android

2008-10-03 Thread Shraddha
Hi Satheesh, To get all the basics systematically .. best is you go throught each of the topics from "getting started" and "developing Applcations" sections on the android docs: http://code.google.com/android/intro/index.html Getting started will be good for basics like anatomy of android.. app

[android-developers] Re: android

2008-10-03 Thread scorpio
Hi Satheesh, You can get the basics from code.google.com/android and lot of websites for android are there like anddev.org androidguys.com helloandroid.com etc.. in all these lot of examples are there and try API demos too.. by doing all these you will get a fair amount of knowledge.. Thanks

[android-developers] Re: android

2008-10-03 Thread luyen
Hello, To know how to use the elements (button, checkbox, imagebutton ...) of android, please read this tutorial: A Visual Guide to Android GUI Widgets : http://whyandroid.com/android/tutorial/88-a-visual-guide-to-android-gui-widgets.html On Oct 3, 6:05 am, "satheesh kumar" <[EMAIL PROTECTED]

[android-developers] Re: android

2008-10-03 Thread rakesh mehta
hi... To get all the basic... just prefer this PDF i am send u a link... http://commonsware.com/Android/Android.pdf hope u like it... On 10/3/08, Shraddha <[EMAIL PROTECTED]> wrote: > > Hi Satheesh, > > To get all the basics systematically .. best is you go throught each > of the topics from "ge

[android-developers] Re: android

2012-10-12 Thread bob
Sounds like you will want to use a subclass of * android.view.animation.Animation*. Then call this on your View object: void *setAnimation* (Animation

[android-developers] Re: Android

2011-09-26 Thread gjs
Hi, Get an android device that does, 2nd hand on ebay is cheap, or sbc. Regards On Sep 23, 2:41 pm, Nakul Varge wrote: > Hii...this is Nakul Varge. I am final year student of PICT college,Pune. > I am doing my BE project in android and have to use bluetooth functionality > of the android. > But

[android-developers] Re: Android Things

2017-02-19 Thread Chinmay Gargava
Also, what information/controls for the device (if any) will be available remotely to me? On Sunday, February 19, 2017 at 3:24:42 PM UTC+5:30, Chinmay Gargava wrote: > > I'm just figuring out Android Things for a small scale IoT project. One > question - how do i mass update all devices i have

[android-developers] Re: Android Camera

2016-03-23 Thread gjs
Sure read http://developer.android.com/training/camera/cameradirect.html On Wednesday, March 23, 2016 at 3:53:18 AM UTC+11, Luca Bondin wrote: > > Is there a way of turning on the camera as part of an activity? I don't > need my app to take photos, I just need the camera view appearing on screen.

[android-developers] Re: Android watch

2016-05-30 Thread Steve Gabrilowitz
On Saturday, May 28, 2016 at 12:07:42 PM UTC-4, Steve Gabrilowitz wrote: > > I've developed several apps for phone and tablet and now want to try my > hand at developing a wearable app. Googled some and found numerous > examples of how to send notifications to the watch and tutorials for > se

[android-developers] Re: Android clip

2008-04-04 Thread jessealbini
This code works for me but it also stops after maybe 20 to 30 seconds. Please fix the media player! It's frustrating to use when half of the features are non-functional! - Jesse --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Goog

[android-developers] Re: Android Telephony

2009-03-31 Thread bins...
hi.. this all package is now not there now thery directly give signal values,,,no need to register the intent receiver... this is the code TelephonyManager SignalManager = (TelephonyManager)getSystemService (Context.TELEPHONY_SERVICE); gnalManager.listen(signalListener, PhoneStateListe

[android-developers] Re: Android Telephony

2009-03-31 Thread Dianne Hackborn
DO NOT DO THIS!!! Especially since there is a public API for this: http://developer.android.com/reference/android/telephony/PhoneStateListener.html We've been through the whole "don't use private APIs" stuff enough times, so I'll just note: 1. This is not "a bit of an advanced topic," this is o

[android-developers] Re: Android Telephony

2009-04-01 Thread TAKEphONE
Hi, Is there a way to read the transmitter signal strength ? TIA --~--~-~--~~~---~--~~ 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

[android-developers] Re: Android Telephony

2009-04-06 Thread Matthew
Hello, I am new to this Group. Thank you for your recommendation to avoid using unsupported techniques. I am trying to obtain the signal strength seen by the G1 phone. As you had referred to, I have implemented a PhoneStateListener and onSignalStrengthChanged (int asu). It looks like I am see

[android-developers] Re: Android Telephony

2009-04-06 Thread Dianne Hackborn
This is the way you get the signal strength. The status bar uses the exact same information to show its bars. On Mon, Apr 6, 2009 at 1:18 PM, Matthew wrote: > > Hello, > > I am new to this Group. > > Thank you for your recommendation to avoid using unsupported > techniques. > > I am trying to o

[android-developers] Re: Android Layout

2009-04-17 Thread Anh Khoa Nguyen Pham
Yes, you can On Fri, Apr 17, 2009 at 3:33 PM, Rahul wrote: > > Hi i want to ask u can i access layout defined in xml file and set > the parameter of that layout in the java file . is it possible plz > reply me > > > thank you > > > > --~--~-~--~~~---~--~~ You r

[android-developers] Re: Android Layout

2009-04-17 Thread Jeff Sharkey
You're probably looking for findViewById() to grab a Java instance of a view that has been inflated. There are several examples of this floating around. j On Fri, Apr 17, 2009 at 1:33 AM, Rahul wrote: > > Hi i want to ask u  can i access  layout defined in xml file and set > the parameter of t

[android-developers] Re: Android Killswitch

2009-04-22 Thread JP
On Apr 22, 9:48 am, "auj...@gmail.com" wrote: > I am looking for any information on the Android Kill switch ? Well, AFAIK there is no Android Kill switch. Some home cooking is in order. Here's my recipe. The beauty here - you can spice it up as much as you like. As a prerequisite, you need to

[android-developers] Re: Android Killswitch

2009-04-22 Thread Streets Of Boston
Thanks JP! If you're worried about the cache, don't use the browser. Instead, use DefaultHttpClient/HttpURLConnection to download your HTML file from your web-site (be sure to set the DefaultHttpClient/ HttpURLConnection not to use any cache). Then show the data from this downloaded HTML file in

[android-developers] Re: Android Killswitch

2009-04-22 Thread JP
Nah, won't work - mind that the app just got killed. Once the switch's been thrown it shouldn't be reversed anyhow, because you never know who got caught and who didn't. Messy - I've included the issue re: caching as additional information only. On Apr 22, 7:42 pm, Streets Of Boston wrote: >

[android-developers] Re: Android service.

2009-04-23 Thread Dianne Hackborn
Er... call startService(). Or if you want to interact with it through an interface, bindService(). On Thu, Apr 23, 2009 at 8:59 PM, Manjunatha M wrote: > Hi Folks, > > Some please help on this. > > *Class MyService:* > > public class MyService extends Service { > > @Override > public void

[android-developers] Re: Android Menu

2009-05-01 Thread Romain Guy
No, the menu will show when the user presses the menu key. If you want a "menu" to always show, just build this in your application's layout. There's absolutely no reason to use the menu for that. On Fri, May 1, 2009 at 9:20 PM, Raja Nagendra Kumar wrote: > > Hi, > > Is it possible by through dy

[android-developers] Re: Android Menu

2009-05-02 Thread Raja Nagendra Kumar
ok. One of the point we were considering was to allow the users to choose if he needs always visible menu (specially if the menu items or one or two). Also application using both menu and layout buttons could possibly confuse the users and may not be a good UI design. Regards, Raja Nagendra Kuma

[android-developers] Re: Android Menu

2009-05-02 Thread Raphael
Being consistent with the general user interface is generally a good way to start. As Romain said, you could of course include a view in your layout that looks like a menu, always present, and thus hide or show it depending on user preferences. The rest of your layout would reflow accordingly. T

[android-developers] Re: android audio

2009-05-05 Thread Yusuf T. Mobile
As you are probably aware, this is not part of the public SDK API, so it's not supported for app developers, it may break with future versions, etc. That being said, dsp_dtmf.c has a function with a decent amount of (entertainingly spelled) comments called "dsp_dtmf_goertzel_decode". Call that wi

[android-developers] Re: Android Emulator

2008-10-29 Thread David Turner
you must use the 'redir' command from the emulator console (which is specific to the emulator program), i.e. with "telnet localhost 5554" then "redir " "adb shell " is used to run a command within the emulated system, and this is something very different On Wed, Oct 29, 2008 at 12:28 PM, [EMAIL P

[android-developers] Re: Android Emulator

2008-10-29 Thread Douglas Oviche
Hi David, thanks a lot for your answer but the solution was differen, in fact I am thinking to put an issue about this, here is the solution to my problem. Because I am running Android on Linux Ubuntu, for us to be able to redirect traffic from one port to another you cannot use the redir within t

[android-developers] Re: Android Camera

2008-10-30 Thread blindfold
See http://groups.google.com/group/android-developers/attach/96ae47051a087fc1/CameraApiTest.zip but note that this code for an older SDK and takePicture() now takes three arguments, as in your own posting. On Oct 30, 7:04 pm, Spanish Android <[EMAIL PROTECTED]> wrote: > Can someone tell me how u

[android-developers] Re: Android Camera

2008-10-30 Thread blindfold
Sorry, bad link - should have been http://groups.google.com/group/android-developers/attach/96ae47051a087fc1/CameraApiTest.zip?part=4 On Oct 30, 8:32 pm, blindfold <[EMAIL PROTECTED]> wrote: > Seehttp://groups.google.com/group/android-developers/attach/96ae47051a08... > but note that this code fo

[android-developers] Re: Android Camera

2008-10-31 Thread Spanish Android
Thanks a lot! This is just what I was searching! --~--~-~--~~~---~--~~ 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

[android-developers] Re: Android defect

2008-12-12 Thread Nick Pelly
We know about this issue. It is because the lexus does not support 3 way calling notifications, and we are incorrectly sending those notifications anyway. The lexus gets confused and disconnects. We plan on fixing, but if you are in a hurry the file is BluetoothHandsfree.java. Nick On Thu, Dec

[android-developers] Re: Android Emulator

2009-02-16 Thread Mads Kristiansen
lish this? > > -- Forwarded message -- > From: atif ali > Date: Wed, Feb 11, 2009 at 1:36 PM > Subject: Re: [android-developers] Re: Android Emulator > To: di...@android.com > > > Thank you for your help. So is there a simpler way I can do it? Becau

[android-developers] Re: Android Development

2009-03-06 Thread Justin Allen Jaynes
You can get a lot of information at developer.android.com or purchase a good book about android, (search amazon.com for android and there are several). Android supports the SQLite Database. Go to sqlite.org. Please do not use this forum until you have learned android. While any interest in And

[android-developers] Re: Android Development

2009-03-07 Thread Mark Murphy
saravanan wrote: > What type of Database support provided by Android? Android has SQLite (http://sqlite.org) integrated in. -- Mark Murphy (a Commons Guy) http://commonsware.com _The Busy Coder's Guide to Android Development_ Version 2.0 Published! --~--~-~--~~~---~

[android-developers] Re: Android Telephony

2009-03-12 Thread mark . kahrl
This can be done, but it is a bit of an advanced topic. You'll need to use an internal class which is com.android.internal.telephony.PhoneStateIntentReceiver Grab this package, the .class files from the cupcake source tree repository , (doesn't ship with the SDK) and add the classes to you'r

[android-developers] Re: Android 2.0

2009-10-26 Thread Marco Nelissen
On Mon, Oct 26, 2009 at 4:29 PM, Frank wrote: > > Why is the SDK for all android releases always so late on arrival? > Developers usually have barely 1-2 weeks to prepare before the release > is dropped into consumer's hands.  With Android 2.0 coming out soon on > the Droid, set to be announced i

[android-developers] Re: Android 2.0

2009-10-26 Thread Disconnect
They did that for 1.6 (or 1.5?) - the community built SDKs from source (sans google bits) and later google released a couple of RC SDKs, I think starting 2 weeks before the final version. That implies that the framework code is open source, and not tied to exclusive contracts with verizon and mot

[android-developers] Re: Android 2.0

2009-10-26 Thread Disconnect
Ooooh, nice twist! Now its not "open source" because that would be more work. Nicely played! On Mon, Oct 26, 2009 at 7:41 PM, Marco Nelissen wrote: > > On Mon, Oct 26, 2009 at 4:29 PM, Frank wrote: >> >> Why is the SDK for all android releases always so late on arrival? >> Developers usually ha

[android-developers] Re: Android 2.0

2009-10-26 Thread JP
"Wouldn't that be even *more* work? " Wow. Only reason I clicked on the poster's profile was to check if this was a troll. Turns out the guy has an @android.com email address. Geez unbelievable. On Oct 26, 4:44 pm, Disconnect wrote: > Ooooh, nice twist! Now its not "open source" because that

[android-developers] Re: Android 2.0

2009-10-27 Thread MrChaz
Yeah it would but given it's their job to support the community and the community is demanding more maybe they should start to look at their practices. On Oct 26, 11:41 pm, Marco Nelissen wrote: > On Mon, Oct 26, 2009 at 4:29 PM, Frank wrote: > > > Why is the SDK for all android releases always

[android-developers] Re: Android 2.0

2009-10-27 Thread Al Sutton
In the words of the big bad D - "Huzzah! Android 2.0 SDK: http://bit.ly/bKGWM"; Al. -- * Looking for Android Apps? - Try http://andappstore.com/ * == Funky Android Limited is registered in England & Wales with the company number 6741909. The views expressed in this email are those of the

[android-developers] Re: Android 2.0

2009-10-27 Thread Marco Nelissen
On Tue, Oct 27, 2009 at 2:14 AM, MrChaz wrote: > > Yeah it would but given it's their job to support the community and > the community is demanding more maybe they should start to look at > their practices. It's not my job to "support the community", but since I'm obviously doing so poorly at it

[android-developers] Re: Android 2.0

2009-10-27 Thread niko20
WOot! 2.0 SDK. And Multitouch! for devices that support it, up to 3 points at once. Great! On Oct 27, 11:25 am, Marco Nelissen wrote: > On Tue, Oct 27, 2009 at 2:14 AM, MrChaz wrote: > > > Yeah it would but given it's their job to support the community and > > the community is demanding more m

[android-developers] Re: Android 2.0

2009-10-27 Thread Disconnect
That assumes that each sdk is an independent unrelated release, which is not the case. Multiple -FINAL- sdks may in fact be more work, but multiple betas are not - the work done to release rc1 is built upon by rc2, rc3...rcN and the final release. On Tue, Oct 27, 2009 at 12:25 PM, Marco Nelissen

[android-developers] Re: Android 2.0

2009-10-27 Thread Wayne Wenthin
I agree that the work may be built on each successive release. I think a bigger issue may be that items come and go through a beta release cycle. If you got beta1 and relied on getAndroidToastButteringSchedule(), if it never makes to to the final release and you failed to keep up with successive

[android-developers] Re: Android 2.0

2009-10-27 Thread Disconnect
Last cycle there were betas for seasoned developers - they were part of the still-missing open source release. (Unless you needed calendars or google services/google maps, it worked fine..) On Tue, Oct 27, 2009 at 12:48 PM, Wayne Wenthin wrote: > I agree that the work may be built on each succes

[android-developers] Re: Android 2.0

2009-10-27 Thread Eric F
I want to congratulate you guys on how speedy the 2.0 SDK has been pushed out. After just releasing 1.6 and it did not include many of the features people were hoping for (Bluetooth SDK, multi-touch, etc) I figured we'd be well into 2010 before we even were close to these much desired platform fea

[android-developers] Re: Android 2.0

2009-10-27 Thread JP
Sorry if we hurt your feelings, but if you can't take the heat, then this indeed might not be for you. Outside of that I agree with Disconnect. We all like to think we're done in one step but the reality is a different one. From what I can gather, the Android team has lost the community by remai

[android-developers] Re: Android 2.0

2009-10-27 Thread Maps.Huge.Info (Maps API Guru)
I'm guessing there must be some sort of non-disclosure involved with this Droid thing and Android 2.0, or else we would have something to work with. It's a bit frightening to think that there could be 100,000+ devices sold on day one and I've never seen the SDK, don't know if my app will break or

[android-developers] Re: Android 2.0

2009-10-27 Thread Pieter
I thought your ranking was based on absolute retention count, not on percentage. Your rating will suffer however even when only a fraction of those 2000 people give you 1 star because your app is broken on their phone... --~--~-~--~~~---~--~~ You received this me

[android-developers] Re: Android 2.0

2009-10-27 Thread Maps.Huge.Info (Maps API Guru)
We'll see here soon (tomorrow maybe?). I have an app ahead of me that's in the 1000-5000 count range for downloads and my install numbers are approaching 5000, so if it's absolute installs, then the app ahead of me should move to the 5000-1 count range by tomorrow. Interesting to find out. -J

[android-developers] Re: Android 2.0

2009-10-27 Thread JP
My emergency response was to deselect Verizon in the Android Market publishing page. Warning: Lots of checking everything else is needed for that, but done in less than 5mins. That should buy some time but of course that initial sales push might be over by the time an app is turned around on 2.0.

[android-developers] Re: Android 2.0

2009-10-27 Thread Maps.Huge.Info (Maps API Guru)
I'm signing up for a Droid on the first day it will be out. Too bad there isn't a simple way for developers to get their hands on these devices without signing up for a two year contract. -John Coryat "Radar Now!" "What Zip Code?" --~--~-~--~~~---~--~~ You receiv

[android-developers] Re: Android 2.0

2009-10-27 Thread String
On Oct 28, 1:59 am, "Maps.Huge.Info (Maps API Guru)" wrote: > I'm signing up for a Droid on the first day it will be out. Too bad > there isn't a simple way for developers to get their hands on these > devices without signing up for a two year contract. John, just consider yourself lucky that y

[android-developers] Re: Android 2.0

2009-10-27 Thread Maps.Huge.Info (Maps API Guru)
Well, perhaps it might be a good idea when those of us who can get these things offer to others who need it testing services with logcat output. -John Coryat --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android De

[android-developers] Re: Android 2.0

2009-10-27 Thread Dianne Hackborn
You don't need 2.0 hardware. Test against the emulator; if you work under 2.0 there, and work on hardware on some earlier version of the OS, you are fine. For what it's worth, I believe the biggest causes of apps breaking on the newer devices are them having trouble with the new screen densities

[android-developers] Re: Android 2.0

2009-10-27 Thread JP
Not like I couldn't swing it. But. Next time I feel spendy I'm going for this: http://maemo.nokia.com/n900/ and this, for a refresh of my aging scratchbox dev environment: http://www.silentpcreview.com/article987-page1.html before looking at Android 2.0. 'cuz I don't feel like committing 2 grands+

[android-developers] Re: Android 2.0

2009-10-27 Thread niko20
I would like to think that you could product something useful and make all the money back. I certainly intend to. My app has already sold a lot, in the thousands already. -niko On Oct 27, 10:13 pm, JP wrote: > Not like I couldn't swing it. > But. Next time I feel spendy I'm going for this:http:

[android-developers] Re: Android 2.0

2009-10-28 Thread MrChaz
> For what it's worth, I believe the biggest causes of apps breaking on the > newer devices are them having trouble with the new screen densities / sizes, > and them using private APIs.  We got the screen support out earlier in 1.6 > and have been trying to beat that drum to get people to start

[android-developers] Re: Android 2.0

2009-10-28 Thread Dianne Hackborn
On Wed, Oct 28, 2009 at 2:16 AM, MrChaz wrote: > Are you allowed to say anything about Droid's openGl version? > From looking at all the leaks (or PR if you ask me) it seems to be a > 2.0 device like the 3gs or pre but there is nothing in the > documentation > Hm, well OpenGL is not my area, but

[android-developers] Re: android bluetooth

2009-11-09 Thread aparna
Hello George, Are you trying to develop a bluetooth chat application? Even I was interested in doin the same.. Can you pls guide me for the same? Regards Aparna On Nov 9, 4:50 pm, george wrote: > Hi all > > I'm developing chat application > > i want android device to connect with other non and

[android-developers] Re: Android versions

2009-11-10 Thread RichardC
The version 2.0 SDK includes all the older SDK(s), although some of them will need to be downloaded after you install it. When you have installed the 2.0 SDK and fixed any paths etc. run the Android command; this will run a small application that will let you download the older SDK(s) into the cor

[android-developers] Re: Android versions

2009-11-10 Thread Fred Grott(Android Expert, http://mobilebytes.wordpress.com)
If you do not need ot use 1.6 or 2.0 feature than you should upgrade to 1.6 so that your screen layouts and etc are correct on WVGA devices etc.. which means after you downlaod the sdk use the new 2.0 downloader via eclipse adt 0.9.4 There is a post on the developer blog about switching to 1.6 sc

[android-developers] Re: Android versions

2009-11-10 Thread Neilz
Thanks. I think we're getting a 2.0 update around Christmas... On Nov 10, 3:42 pm, "Fred Grott(Android Expert, http://mobilebytes.wordpress.com)" wrote: > If you do not need ot use 1.6 or 2.0 feature than you should upgrade > to 1.6 so that your screen layouts and etc are correct on WVGA devices

[android-developers] Re: Android Marketplace?

2009-01-05 Thread Al Sutton
Marketplace is a closed source app that Google is in control of and developing it as it sees fit. There are other alternatives that allow you to brows apps from your destop, download apks, etc., etc., if you'd like to try one you can take a look at http://andappstore.com/ Al. eags wrote: > I

[android-developers] Re: Android Marketplace?

2009-01-05 Thread Dan Dumont
I think the point of his post was that he wants to browse THE marketplace, not andappstore's marketplace... I'd like to know how as well. On Mon, Jan 5, 2009 at 1:03 PM, Al Sutton wrote: > > Marketplace is a closed source app that Google is in control of and > developing it as it sees fit. > >

[android-developers] Re: Android Marketplace?

2009-01-05 Thread Shane Isbell
On Mon, Jan 5, 2009 at 10:11 AM, Dan Dumont wrote: > I think the point of his post was that he wants to browse THE marketplace, > not andappstore's marketplace... > > I'd like to know how as well. > Google does not currently allow browsing of applications from the web. My understanding is that th

[android-developers] Re: Android Marketplace?

2009-01-05 Thread eags
That is a real shame that they have decided to do that. What we are seeing with the major fragmentation of places to get android apps from is the result and will get worse if this policy continues. Once we go beyond a certain point people will be used to it and the fragmentation will be almost i

[android-developers] Re: Android Marketplace?

2009-01-05 Thread Dan Dumont
It may very well become what you say...it's just not there yet(tm)... I hope they put some effort into at least putting the app in the emulator... I'd really like to be able to see what kinds of apps are out there. On Mon, Jan 5, 2009 at 1:39 PM, eags wrote: > > That is a real shame that th

[android-developers] Re: Android Marketplace?

2009-01-05 Thread Shane Isbell
On Mon, Jan 5, 2009 at 10:39 AM, eags wrote: > > That is a real shame that they have decided to do that. What we are > seeing with the major fragmentation of places to get android apps from > is the result and will get worse if this policy continues. Once we go > beyond a certain point people w

[android-developers] Re: Android Marketplace?

2009-01-05 Thread Disconnect
You realize they could have simply disabled the third-party-installer option, right? (Or not written one to begin with.) They are far more than an application vendor in this space, and if they really wanted to "control the distribution channel for mobile content" they could have. (Also, that "big

[android-developers] Re: Android Marketplace?

2009-01-05 Thread Shane Isbell
On Mon, Jan 5, 2009 at 11:18 AM, Disconnect wrote: > You realize they could have simply disabled the third-party-installer > option, right? (Or not written one to begin with.) They are far more than > an application vendor in this space, and if they really wanted to "control > the distribution c

[android-developers] Re: Android Marketplace?

2009-01-05 Thread Al Sutton
Disconnect wrote: > You realize they could have simply disabled the third-party-installer > option, right? (Or not written one to begin with.) They are far more > than an application vendor in this space, and if they really wanted to > "control the distribution channel for mobile content" they

[android-developers] Re: Android Marketplace?

2009-01-05 Thread Disconnect
Owned a commodity (j2me) tmobile phone recently? Non-tmobile-sourced j2me apps (unsigned, for those playing along at home, and tmob holds the keys) are prevented from accessing the net. (Right. No gmail.jad, no gmaps, no im+, nothing more connected than solitare.) Even non-subsidized versions are

[android-developers] Re: Android Marketplace?

2009-01-05 Thread Shane Isbell
On Mon, Jan 5, 2009 at 11:37 AM, Al Sutton wrote: > > Disconnect wrote: > > You realize they could have simply disabled the third-party-installer > > option, right? (Or not written one to begin with.) They are far more > > than an application vendor in this space, and if they really wanted to >

[android-developers] Re: Android Marketplace?

2009-01-05 Thread Shane Isbell
No arguments here. This is not an evil plot, just good, old-fashioned competition, which of course involves a fair amount of jumping up and down, when stomping doesn't agree with one's size. Shane On Mon, Jan 5, 2009 at 11:47 AM, Disconnect wrote: > Owned a commodity (j2me) tmobile phone recent

[android-developers] Re: Android Marketplace?

2009-01-05 Thread Disconnect
How many payment accounts would you like the average developer to register for? So far we have announcements/releases from T-mobile (in multiple countries, so multiplied out), and Sprint, but hardware coming from 7 different vendors (including Kogan and HTC, not including moko). So that sounds lik

[android-developers] Re: Android Marketplace?

2009-01-05 Thread eags
I can't think of any examples of google being "rutheless". Effective and aggressive yes, but ruthless to me implies mean and dirty which doesn't really jibe with my take on google's actions in the past. The 800 pound gorilla didn't get huge the way Microsoft did, they got huge by providing super

[android-developers] Re: Android Marketplace?

2009-01-05 Thread Shane Isbell
On Mon, Jan 5, 2009 at 12:02 PM, Disconnect wrote: > How many payment accounts would you like the average developer to register > for? > This could still have one centralized payment to developers. I'm talking about billing the user through carrier systems . > So far we have announcements/releas

[android-developers] Re: Android Marketplace?

2009-01-05 Thread Shane Isbell
On Mon, Jan 5, 2009 at 12:04 PM, eags wrote: > > I can't think of any examples of google being "rutheless". Effective > and aggressive yes, but ruthless to me implies mean and dirty which > doesn't really jibe with my take on google's actions in the past. Google lowering the rank or removing th

[android-developers] Re: Android Marketplace?

2009-01-07 Thread andy_techead
I hate to interrupt but I thought many of you would be interested in knowing that my company is looking to Recruit approx 40 Mobile Application Developers.I thought I would mention it because it looks like all of you are quite technical. These positions are in 3 locations: Richmond VA, San J

[android-developers] Re: Android Marketplace?

2009-01-07 Thread Stoyan Damov
On Mon, Jan 5, 2009 at 11:10 AM, eags wrote: > > - I've heard that people who are unlocking their G1 phones to use on > ATT can't access the marketplace. I've used Marketplace without any problem on my unlocked G1 in Bulgaria! ;) Cheers --~--~-~--~~~---~--~~ You

[android-developers] Re: android 1.5

2009-01-14 Thread Fred Grott(shareme)
I am not sure Morris as I was not set about building my own copy until this weekend.. looks like it did not build successfully On Jan 13, 11:15 pm, Morris wrote: > Dear All: > > I face a situation about building the new android. > I don't know whether I successfully build the new code which

[android-developers] Re: android 1.5

2009-01-15 Thread Morris
Dear All: I have solved this issue. The root cause is that I continually read the android SDK image so I always see the android 1.0. Sorry to waste your time. Regards, Morris On 1月14日, 下午1時15分, Morris wrote: > Dear All: > > I face a situation about building the new android. > I don't know whe

[android-developers] Re: android audio

2009-01-31 Thread Dave Sparks
In SDK 1.0, you can only record to a file using the AMR-NB codec, which is bandwidth limited to 4KHz, and the encoding process itself is pretty lossy. If you want to experiment with this on a G1, go to Messaging, create a new message, click menu and select Attach, and select Record Audio. This wil

[android-developers] Re: Android Emulator

2009-02-10 Thread David Turner
the emulator is a native application. If would take considerable work to make it into an Active X component (which would only work on IE), or a NSPlugin. It uses signals in a very special way which might be really hostile to a browser environment. Furthermore, it needs about 192 MB of disk images t

[android-developers] Re: [android-developers]

2009-08-26 Thread Dan Sherman
Have you tried following the instructions at the bottom? - Dan On Wed, Aug 26, 2009 at 12:43 PM, Grant, Stephanie (Matrix) < stephanie.gr...@ihg.com> wrote: > I have tried to be removed from this email group 5 times! Please remove > me! > > > > *Stephanie Grant* > > Revenue Guest Technology >

[android-developers] Re: Android project

2009-08-30 Thread Eric Wong (hdmp4.com)
Why didn't you post earlier? We could have collaborated and build a ADC2 apk together, now seems impossible to build an apk in about a day, isn't it? Anyway, contact me via e-mail/gtalk if you are interested in the idea below http://groups.google.com/group/android-developers/browse_thread/thread/

[android-developers] Re: Android project

2009-08-30 Thread Shawn Brown
> I am a student studying in final year engineering in IT. > I am willing to do my final year projecto Android platform. > Can anyonelease suggest me a good idea that camn be implemented on > Android platform. Very simple. Copy / paste in Gmail. It can't be done now AFAIK. Maybe you can copy th

[android-developers] Re: Android icons

2009-08-31 Thread Balwinder Kaur (T-Mobile USA)
You can view the inbuilt icons by unzipping android.jar file. You can use any icon that follows the recommended guidelines for icons. http://developer.android.com/guide/practices/ui_guidelines/icon_design.html Balwinder Kaur Open Source Development Center ·T· · ·Mobile· stick together The view

[android-developers] Re: Android icons

2009-08-31 Thread Noor
I think there is no such sites there...But if u have the Android Source Code, just search .png there and will get all the icons of Android..Source code are available in site, no need to dig them using Linux PC... Nur Al Hasan New Delhi, India On Aug 30, 4:43 pm, bennyb wrote: > Apart from

[android-developers] Re: Android icons

2009-08-31 Thread Chi Kit Leung
http://developer.android.com/shareables/icon_templates-v1.0.zip this is the template, that may help On Tue, Sep 1, 2009 at 3:44 AM, Balwinder Kaur (T-Mobile USA) < balwinder.k...@t-mobile.com> wrote: > > You can view the inbuilt icons by unzipping android.jar file. > > You can use any icon that f

[android-developers] Re: Android project

2009-09-06 Thread sriram
Well guys this forum is still open for suggestions!!! Post your ideas if you have any. --~--~-~--~~~---~--~~ 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

[android-developers] Re: Android kernel

2009-09-29 Thread Yusuf Saib (T-Mobile USA)
Android 1.6 upgrades the Linux kernel from 2.6.27 to 2.6.29, FWIW. Yusuf Saib Android ·T· · ·Mobile· stick together The views, opinions and statements in this email are those of the author solely in their individual capacity, and do not necessarily represent those of T-Mobile USA, Inc. On Se

[android-developers] Re: Android kernel

2009-09-30 Thread Cronix
Correct, but not to 2.6.32 and i want to integrate some patches, kernel modifications, thats why i need a custom compiled kernel --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to th

[android-developers] Re: Android browser?

2008-06-03 Thread Mark Murphy
maceghost wrote: > I've used WebView to load local html, but can't get the browser to > load a page from the web. Why are there no working examples using the > android browser? For what it's worth, it works for me. There have been various threads on this group and android-beginners regarding ge

[android-developers] Re: Android browser?

2008-06-03 Thread maceghost
what is working for you? I could find no real examples of any code using WebView to load a page from the internet. I'll freely admit that I could be missing something. I'll include the code that I managed to piece together from several disjoint sources ( none from code.google.com ), as well as

  1   2   3   4   5   6   7   8   9   10   >