[android-developers] Re: Link to buy unlocked phone does not work

2008-12-08 Thread Yorgen Valune
so buy a regular locked phone and unlock it by using this site: http://www.unlock-tmobileg1.com/EN/unlock-G1.php   as far as i know 100% success. From: ARW [EMAIL PROTECTED] To: Android Developers android-developers@googlegroups.com Sent: Saturday, December

[android-developers] precision of alarms using RTC_WAKEUP

2008-12-08 Thread alex
I am using the AlarmManager to set alarms with RTC_WAKEUP. And they work. Some of the alarms are set for times just a few hours in the future; others are set for days in the future. My problem is that some alarms (maybe 20% of them) fire late, up to 15 minutes late. Others are right on time.

[android-developers] Re: precision of alarms using RTC_WAKEUP

2008-12-08 Thread Dianne Hackborn
On Mon, Dec 8, 2008 at 12:18 AM, alex [EMAIL PROTECTED] wrote: My problem is that some alarms (maybe 20% of them) fire late, up to 15 minutes late. Others are right on time. Is this expected behavior? Has anyone else noticed this? Are you sure you are holding a wake lock the entire time

[android-developers] Re: New SDK Available

2008-12-08 Thread Dianne Hackborn
It's the same as the G1. On Sun, Dec 7, 2008 at 4:04 PM, Christine [EMAIL PROTECTED]wrote: But we don't know which phone Google will be shipping. Is it similar to a US G1 or to a UK G1 which seems to work on a different 3G frequency? I guess we'll all know by the end of the week. On Dec 7,

[android-developers] Re: Alternative to category LAUNCHER for plugins?

2008-12-08 Thread Peli
Thanks for the reply! Will this be supported in the future? Is there any way I could submit a small patch for this issue? (i.e. Market should call the MAIN activity of a package regardless of whether it has category LAUNCHER or not, or at least if it has DEFAULT category - OR - don't show the

[android-developers] Android Date Picker

2008-12-08 Thread Muthu Kumar K.
Hi All, can any one help me how do i get the date form DatePicker? --~--~-~--~~~---~--~~ 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

[android-developers] Re: Weird Map Problem (Controlling same map)

2008-12-08 Thread mscwd01
Okay this kind of makes sense, so to ensure the map is always showing the correct view (i.e. city), one should reposition the map each time the activity is loaded? One question though, what happens if someone clicks the back button? Does the original activity reload automatically, or do you have

[android-developers] Re: Weird Map Problem (Controlling same map)

2008-12-08 Thread mscwd01
... Just to add to my question above ... If only one MapActivity is allowed per process - I take it that means per application??? - How does one properly use 2 or more maps per application? On Dec 8, 12:17 pm, mscwd01 [EMAIL PROTECTED] wrote: Okay this kind of makes sense, so to ensure the map

[android-developers] Re: Android Dev Phone 1 + Shipping to Germany

2008-12-08 Thread roland
Just checked the shipping fee to France, it costs 180 USD!!! It is almost the half of the price of device. On 7 déc, 18:53, Justin (Google Employee) [EMAIL PROTECTED] wrote: Any appropriate customs duties and taxes will be added on top of the $399 purchase price. You are correct, that this

[android-developers] Re: Link to buy unlocked phone does not work

2008-12-08 Thread Christine
On Dec 6, 9:59 am, ARW [EMAIL PROTECTED] wrote: Anyone had better luck with this? Yes, I could order a phone. Maybe the site got too much traffic so soon after the announcement. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

[android-developers] Re: ::CPU usage

2008-12-08 Thread fcalzada
Hi, Do you have any real benchmark to provide (based on real phone) ? Like it is done on the jbenchmark site? (Although it's only for java code) On Dec 7, 3:06 am, Dianne Hackborn [EMAIL PROTECTED] wrote: You really can't judge performance based on the emulator.  Ignoring the CPU emulation,

[android-developers] Re: Android Dev Phone 1 + Shipping to Germany

2008-12-08 Thread blindfold
To The Netherlands shipping and handling is $178.90. I even got a phone call from the fraud prevention team of my credit card's bank today, because they apparently found it a suspicious transaction. Well, hopefully I'll now have a functional G1 soon. On Dec 8, 2:03 pm, roland [EMAIL PROTECTED]

[android-developers] Re: Easy way to identify a missed call? (Broadcast)

2008-12-08 Thread code_android_festival_way
Something new about this topic? On 5 Dez., 01:01, code_android_festival_way [EMAIL PROTECTED] wrote: Hello! At the moment I want to write a small application that gives me LED notifications when Imisseda call. (the system only provides me with notifications when I get a SMS, email or

[android-developers] Re: Weird Map Problem (Controlling same map)

2008-12-08 Thread Mark Murphy
mscwd01 wrote: If only one MapActivity is allowed per process - I take it that means per application??? By default, yes, though it does not have to be that way: http://code.google.com/android/intro/appmodel.html How does one properly use 2 or more maps per application? If the quoted bit

[android-developers] Part of CNET CiUI iPhoneUI libs working in Android

2008-12-08 Thread Fred Grott(shareme)
Just to let everyone know that I was able to get part of the CNET iPhone CiUI UI lib working on Android using Webkit WebVIew to embed webkit, see the video of screenshots: http://www.youtube.com/watch?v=9WKxVYEx0AM --~--~-~--~~~---~--~~ You received this message

[android-developers] Re: Android Date Picker

2008-12-08 Thread Mark Murphy
Muthu Kumar K. wrote: can any one help me how do i get the date form DatePicker? It should be provided to the DatePicker.OnDateChangedListener you gave the picker. Or, if you are using DatePickerDialog, it should be provided to the DatePickerDialog.OnDateSetListener you gave the dialog. --

[android-developers] Re: Android Date Picker

2008-12-08 Thread Muthu Kumar K.
hi, Can any you give me some example, because i am new to Android. Thanks, Muthu Kumar K. On Dec 8, 5:38 pm, Mark Murphy [EMAIL PROTECTED] wrote: Muthu Kumar K. wrote: can any one help me how do i get the date form DatePicker? It should be provided to the DatePicker.OnDateChangedListener

[android-developers] Basic RPC - which one to use ? JSON / XML / SOAP / HTTP etc etc etc.

2008-12-08 Thread Richard Green
Hi there - I need to do some very basic RPC stuff passing around a few objects ( very simply serialized ) as well as the usual standard authentication etc etc. I'm looking for an RPC stack which is both 1) Client side : Natively supported under android (or failing that - with a minimal of reqd

[android-developers] Re: How to create grey menu icons?

2008-12-08 Thread loty
I'm not sure what you are asking - if you asking about how to improve your graphic design skills I would suggest reading good books on Photoshop. But before you start google already created bunch of common icons that you can use in your applications

[android-developers] Re: Android Date Picker

2008-12-08 Thread Mark Murphy
Muthu Kumar K. wrote: Can any you give me some example, because i am new to Android. ApiDemos/src/com/example/android/apis/view/DateWidgets1.java That example of DatePickerDialog can be found in the samples/ directory of your SDK installation. -- Mark Murphy (a Commons Guy)

[android-developers] Re: precision of alarms using RTC_WAKEUP

2008-12-08 Thread Dorn Hetzel
Is there a recommended method for setting alarms that will survive a power cycle ? On Mon, Dec 8, 2008 at 3:21 AM, Dianne Hackborn [EMAIL PROTECTED] wrote: On Mon, Dec 8, 2008 at 12:18 AM, alex [EMAIL PROTECTED] wrote: My problem is that some alarms (maybe 20% of them) fire late, up to 15

[android-developers] Debugging in Eclipse.

2008-12-08 Thread Brad Gies
Sorry, this is probably off topic here. Last night, I was debugging a new class I implemented, and everything was fine, but suddenly in one method none of my variables were showing up in the variables window.. And in the Expressions window the variables show up, but are marked as cannot be

[android-developers] Re: audio recording issues

2008-12-08 Thread Dorn Hetzel
While I am sure any forward looking statement will need to be taken with a grain of salt, perhaps you could alleviate many of our concerns with some clue as to the timeframe in which we might expect relief on this front. If we knew that in a month or two we could look forward to at least

[android-developers] I am still looking for strong mobile device Android Developers

2008-12-08 Thread Andrew Freundt
If anyone is interested in a permanent salaried position with a large cutting edge company in Richmond, VA please give me a call or shoot me a quick e-mail. I am simply looking for people with several years of mobile device programming and java development. Beyond this, some Android experience.

[android-developers] Re: Basic RPC - which one to use ? JSON / XML / SOAP / HTTP etc etc etc.

2008-12-08 Thread skink
hi, 1) Client side : Natively supported under android (or failing that - with a minimal of reqd libraries) you could take a look in my xml-rpc stuff - just 3 classes including Base64 decoder/encoder: http://www.anddev.org/slim_xml-rpc-t3800.html you have to register to see download link.

[android-developers] Astronomical Android Dev Phone 1 shipping free

2008-12-08 Thread elDoudou
Dear Google Team. Just wanted to react over the now available Android Dev Phone 1 device, which is available at $399. A very good news, if you omit the $183,81 shipping fee (at least from France), resulting from what is named UPS Innovations. I was about to purchase it, but at check-out final

[android-developers] Re: Displaying image in SimpleExpandableListAdapter

2008-12-08 Thread androidian
Hmmm...this one wasn't as solved as I thought. When using a SimpleExpandableListAdapter, you don't have easy access to the TextViews inside it. It looks like I can specify my own layout file to use for the individual rows, and set TextViews for use by the rows, and I guess I could set the

[android-developers] Re: New SDK Available

2008-12-08 Thread don rhummy
Will the phone work with Sprint? Is there anything that can use android with Sprint? --- On Mon, 12/8/08, Dianne Hackborn [EMAIL PROTECTED] wrote: From: Dianne Hackborn [EMAIL PROTECTED] Subject: [android-developers] Re: New SDK Available To: android-developers@googlegroups.com Date:

[android-developers] Re: Android Dev Phone 1 + Shipping to Germany

2008-12-08 Thread GasBot
For all you people overseas, you can always send me $550USD and I'll ship it to you however you'd like so that you don't get charged all the import taxes. :D On Dec 8, 6:37 am, blindfold [EMAIL PROTECTED] wrote: To The Netherlands shipping and handling is $178.90. I even got a phone call from

[android-developers] Re: New SDK Available

2008-12-08 Thread Teo
About the new dev phone, there should probably be one mandatory app submission (if there isn't one already) because otherwise there will be an avalanche of 'developers' which will affect dev phone supplies for future devs, or devs in countries which will be included in the program... I hope i'm

[android-developers] Re: New SDK Available

2008-12-08 Thread Jean-Baptiste Queru
Search back in this thread for my reply about a day ago. The answer is no, the Android Dev Phone 1 doesn't work with Sprint, because Sprint is not a GSM operator. JBQ On Mon, Dec 8, 2008 at 7:34 AM, don rhummy [EMAIL PROTECTED] wrote: Will the phone work with Sprint? Is there anything that

[android-developers] Re: New SDK Available

2008-12-08 Thread Jean-Baptiste Queru
So, you're saying that developers should be forced to release untested applications? JBQ On Mon, Dec 8, 2008 at 7:43 AM, Teo [EMAIL PROTECTED] wrote: About the new dev phone, there should probably be one mandatory app submission (if there isn't one already) because otherwise there will be

[android-developers] Overlay, like in the Pictures application

2008-12-08 Thread kelly
Hello, The pictures application displays a set of left/right arrows in what I think is an overlay, allowing a user to switch between pictures. I need to create something similar, but I'm not sure how to do it. Can anyone give me a general idea of how this is done? Thanks, Kelly

[android-developers] Re: New SDK Available

2008-12-08 Thread Al Sutton
Egg meet chicken... chicken meet egg... now who was first? Al. Jean-Baptiste Queru wrote: So, you're saying that developers should be forced to release untested applications? JBQ On Mon, Dec 8, 2008 at 7:43 AM, Teo [EMAIL PROTECTED] wrote: About the new dev phone, there should

[android-developers] Re: Android Dev Phone 1 + Shipping to Germany

2008-12-08 Thread walterc
just curious: did anyone who ordered the dev phone receive a ups tracking number? is there anyway to know the progress of our orders? all i received was a email telling me my order was placed and an order number which i dont really know what to do with (its not a ups tracking number). any

[android-developers] Home Screen issue

2008-12-08 Thread Billsen
Hi, When creating shortcut for bookmark on Home screen (the screen with clock image) in emulator, a default icon is assigned for all bookmarks for web pages. Is it possible to customize icons for bookmark shortcut on Home screen. For example, shortcut for Yahoo bookmark has an icon for Yahoo web

[android-developers] Re: I am still looking for strong mobile device Android Developers

2008-12-08 Thread Fred Grott(shareme)
Andrew this if Fred Grott in NW Indiana.. I am currently porting CNEt's CiUI iPhone js UI to uae in Android via the embedded webkit as app concept, see Video: http://www.youtube.com/watch?v=9WKxVYEx0AM T-mobile and Moto were attempting to recruit me If interested send me email to my gmail

[android-developers] Re: How to create grey menu icons?

2008-12-08 Thread Noonien Soong
Sorry, I guess I can't express myself the right way -- My graphic design skills are fine. I was just wondering if I have to find a way how to recreate the EXACT visual style of the icons myself by toying around in Photoshop for a while, or if there is a way to get my hands on the original PSD

[android-developers] ListView + SimpleCursorAdapter = NullPointerException

2008-12-08 Thread Chronos
Hello there, I am trying to access the contact list and display it in a CUSTOM ListView (ListActivity is not an option). Unfortunately the activity fails with a NullPointerException :( This may be a simple issue - have I overlooked something ? Help appreciated ... (I have tried the code with a

[android-developers] OpenAL

2008-12-08 Thread reillyse
Hi All, I've been searching for 3D audio support on the Android platform. I've used openAL on other platforms (IPhone and Linux) but I can't find any mention of it in the android docs. Is there another way to do 3d sound on the android platform ? I know openAL is open source and correct

[android-developers] Innovation on Mobile Applications

2008-12-08 Thread Bala
Hi all, Around this time last year, Google announced the Android Developer Challenge. Instead of building one single applications, I was writing this document , Innovation on Mobile Applications. It opens up a whole spectrum of opportunities for mobile applications. Please read this document and

[android-developers] RE:vertical scrollbar +code without using xml file.

2008-12-08 Thread yashoda
Hi. vertical scrollbar +code without using xml file. using only code. --~--~-~--~~~---~--~~ 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] Android Dev Phone - shipping to Canada?

2008-12-08 Thread J Dietrich
So, I signed up for the Market, and then suffered a severe bout of Jaw Drop when I saw that it was going to cost $264.19 to ship to Canada. I quickly retreated from purchasing what had been looking like one hell of an x-mas present for myself. According to the Help/FAQ, the fee includes

[android-developers] Re: Android Dev Phone 1 + Shipping to Germany

2008-12-08 Thread Eugene Andres
I just tried to buy one Android Dev Phone for Spain, but when checking out it wanted to charge me $170 shipping (UPS Innovations (Tracking) - $170.14) with no alternative shipping method. I cancelled it, of course. What kind of shipping could be *that* expensive? It's just unacceptable for

[android-developers] G1 Developer Version UMTS Band / Frequencies?

2008-12-08 Thread Varjohaltia
I've been trying to find the technical specifications of the G1 developer version, to no avail. Is the hardware the same as the T- Mobile G1, i.e. UMTS band IV only, i.e. no 3G with anyone but T- Mobile? Will there be a version that also has bands I or II?

[android-developers] Re: Astronomical Android Dev Phone 1 shipping free

2008-12-08 Thread J Dietrich
I had created a new post some hours ago about the Canadian shipping costs (which are the highest for some reason), but it appears to have been eaten by /dev/null... I'll repost here, with apologies if the thread was created and I'm just not seeing it: According to the Help/FAQ, the fee includes

[android-developers] G1 and PS3 question

2008-12-08 Thread Ryan
I plan on putting 4-6 gigs of music on my G1. I then want to stream that music using bluetooth or wi-fi to my stereo system. I figured the best way to do this would be to use the bluetooth/ wi-fi abilities of the PS3. The idea is to control the music heard throughout the house using the G1. I

[android-developers] How to track the changes in the EditField

2008-12-08 Thread selva
Hi, How can i track the text chage in the Edit filed . --~--~-~--~~~---~--~~ 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

[android-developers] Android Dev Phone 1 Specification

2008-12-08 Thread focuser
Is the hardware of this phone Android Dev Phone 1 identical to T- Mobile G1 except it's fully unlocked? I couldn't find GPS, compass, and Motion Sensor in the hardware specification published on the Android Market site. Just wondering if this information is actually accurate. Hardware

[android-developers] How to configure android emulator disk space?

2008-12-08 Thread chunkai.hw...@gmail.com
Hi, I want to compile a native c++ program with gnueabi-g++ running on android emplator, but it was failed to copy the runtime c++ library to android emulator due to not enough disk space of emulator.How to set the emulator disk space,or I have to compile a android image with the source? Thanks

[android-developers] Want a dialog

2008-12-08 Thread M.Manjunatha
Hi Folks, I am writing a app on android. I want a dialog to be displayed at the bottom of the screen which will contain some buttons. May I know which class i should use to write this dialog. Can i use showDialog()? if yes, how can i make it display at the bottom of the screen? Regards, Manju

[android-developers] How to track the selected item in spinner control

2008-12-08 Thread selva
Hi, Which event i need to listen to track the selected or selection change event in a spinner control. --~--~-~--~~~---~--~~ 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] Shipping a European dev phone to the US?

2008-12-08 Thread Jiri
I'm interested in buying the Android Dev Phone 1, which I'd mainly use in Finland and elsewhere in Europe. This means that I'd need to get the version that uses the Finnish GSM and UMTS band, and of course comes with a 230V charger. I'll be visiting the US over the holidays, so it'd be very

[android-developers] Developer Phone... Upgrade?

2008-12-08 Thread Netherside
I purchased my phone for full price just prior to the developer phone announcement, and I was very disappointed on missing out on that. I am wondering if it will be possible to upgrade through Google. I understand the liability with TMobile, but I would be willing to sign a developer agreement

[android-developers] Re: Android Dev Phone 1 + Shipping to Germany

2008-12-08 Thread [EMAIL PROTECTED]
The only shiping available to germany seams to be dhl for 178$, thats a lot. On 8 Dez., 00:52, Christine [EMAIL PROTECTED] wrote: In my experience, it depends on what Google puts in the shipping papers, what UPS tells the people at Customs and the mood of the people at Customs. Sometimes you

[android-developers] Android Mobile Applications Developer - Richmond, VA

2008-12-08 Thread [EMAIL PROTECTED]
Salary + 10-15% bonus (level and performance dependent) We are currently recruiting software developers with experience in programming for mobile devices. The successful candidate will join the device development team and get a unique opportunity to shape the future of T-Mobile’s device

[android-developers] Re: OpenAL

2008-12-08 Thread Dave Sparks
Android does not have support for OpenAL at this time. The G1 and iPhone chipsets are not the same, and even if they were, the software stacks are different. On Dec 8, 8:15 am, reillyse [EMAIL PROTECTED] wrote: Hi All, I've been searching for 3D audio support on the Android platform.

[android-developers] ConnectivityManager with the emulator

2008-12-08 Thread nimbus83
Hello, I want to implement with the emulator an application that receives information when the network connection is connected or disconnected. How can I register a receiver that gets the changes in the network connection? I have tried this: public class ConnectionChangeReceiver

[android-developers] Re: audio recording issues

2008-12-08 Thread Dave Sparks
I can only tell you that the feature is done. The timing of when you see a device in the field that supports it is up to the deployment manager. It's important to remember that Android is a platform, and just because the platform advances doesn't necessarily mean that all devices are advancing

[android-developers] Re: Android Dev Phone 1 Specification

2008-12-08 Thread szeldon
Damn, great question. I assumed that this device is exactly the same as T-Mobile's G1 except from the fact that this is unlocked. I've already ordered this phone and now I'm a little confused. On Dec 8, 1:35 am, focuser [EMAIL PROTECTED] wrote: Is the hardware of this phone Android Dev Phone 1

[android-developers] Re: Android Dev Phone 1 Specification

2008-12-08 Thread Justin (Google Employee)
I couldn't find GPS, compass, and Motion Sensor in the hardware specification published on the Android Market site. These hardware features are part of the Android Dev Phone 1. They're present, but not listed in the features. It would be pretty silly to provide a developer device, and then not

[android-developers] Creating a TabHost with Tabs containing Activities WITHOUT extending TabActivity

2008-12-08 Thread mscwd01
I need a way to create a TabHost which has an intent as the tabs content, e.g: TabHost tabs = (TabHost)findViewById(R.id.tabhost); tabs.setup(); TabSpec spec1 = tabs.newTabSpec(TabOne); spec1.setIndicator(Tab One, this.getResources().getDrawable (R.drawable.tab_icon)); spec1.setContent(new

[android-developers] Re: How to configure android emulator disk space?

2008-12-08 Thread David Turner
disk space is not configurable at the moment. the partition sizes reflect the ones on the G1. we may add a feature to allow arbitrary partition sizes in the future, but for now, you will have to hack the emulator sources to do that (search for 0x420 in android_main.c). as for anything built

[android-developers] Re: Shipping a European dev phone to the US?

2008-12-08 Thread Justin (Google Employee)
The charger that ships with the Dev Phone 1 works from 100-240V, so it supports European voltages, but you may need a plug adapter to physically adapt the plug. Additionally, if it doesn't come with one, you can just buy a USB- miniUSB cable and charge your phone from your computer (this is what

[android-developers] Re: Android Dev Phone 1 + Shipping to Germany

2008-12-08 Thread szeldon
When logged to an Android Market, see this for details: http://android.brightstarcorp.com/help.php This contains information as follows: Outside the US For Orders shipping outside the US, shipping pricing includes cost of shipping service and the applicable customs, duties, import and country

[android-developers] Eclipse problem viewing threads on emulator

2008-12-08 Thread Greg
Hi All, In Eclipse there is an android Threads view which, I assume, will allow me to monitor the threads I am creating. However, the view simply comes up and says 'Thread updates not enabled for selected client (use toolbar button to enable)'. I see no toolbar button that has anything to do

[android-developers] Re: Android Dev Phone - shipping to Canada?

2008-12-08 Thread Justin (Google Employee)
Even when they are levied, they are charged through to the party receiving the shipment, Not in this case. In this case the duties and taxes have been charged to the shipper, which is why the cost of shipping *and handling* is much more than just the shipping cost. As to the amount, I'm not a

[android-developers] Logcat timestamps?

2008-12-08 Thread Ward Willats
I see when ddms shows a log the entires are timestamped. Is there a way to get adb logcat to timestamp entries? -- Ward --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: Astronomical Android Dev Phone 1 shipping free

2008-12-08 Thread Brian Manning
On Mon, Dec 8, 2008 at 7:18 AM, J Dietrich [EMAIL PROTECTED] wrote: Can someone please take a stab at breaking down or otherwise rationalizing this number, helping me (and other Canucks scratching their heads and/or already being preyed upon by eBay sellers) to understand this? For $18.99, I

[android-developers] Re: ConnectivityManager with the emulator

2008-12-08 Thread nimbus83
Thank you David! In the meantime I found the right action for the IntentFilter. It is android.net.conn.CONNECTIVITY_CHANGE. On 8 Dez., 18:58, David Turner [EMAIL PROTECTED] wrote: pressing F8 will toggle the emulator network on/off. On Mon, Dec 8, 2008 at 9:09 AM, nimbus83 [EMAIL PROTECTED]

[android-developers] Any way to reject a call programmatically

2008-12-08 Thread Jay-andro
Is there any direct (or convoluted) way to reject an incoming call, i.e. send it directly to voicemail. Meaning (a) if a call is coming in and matches certain criteria (b) send the call to VM, and stop the ringing. (programmatically) I've got (a) under control but I dont know how to do (b). Any

[android-developers] Re: Android Dev Phone - shipping to Canada?

2008-12-08 Thread Joe Bowser
Brightstar has a history of screwing up International Orders, which can be found by looking at the history of the One Laptop Per Child's G1G1 program. In that case, getting the device was the issue, not the cost of the shipping. It took Brightstar almost six months to figure out how to ship to

[android-developers] Is there any API for the Messaging notification settings ?

2008-12-08 Thread jarkman
I'm looking for the API for access to the Messaging (SMS/MMS) notificaiton settings, specifically the ringtone vibrate settings. Analogy with the phone would seem to suggest there should be an API, but I can't find one. What am I missing ? Thanks, Richard

[android-developers] Suppressing unwanted options in image handler

2008-12-08 Thread Jake Maui
I'm getting a chooser for this even though I don't specify chooser. I want this to go directly to the email handler intent and not even show the MMS option. Is there a way to suppress this option? Thanks Intent intent = new Intent(Intent.ACTION_SEND); intent.setType(image/png);

[android-developers] Re: Android Dev Phone - shipping to Canada?

2008-12-08 Thread J Dietrich
I've spoken with Canada Customs and had it confirmed that a phone w/ $399USD value would incur a max of $64 in taxes (PST+GST) at current exchange rates. Being manufactured outside of NAFTA zones, it is possibly subject to duties of 6% (about $30), though I was just explicitly told by someone at

[android-developers] Re: Android Dev Phone - shipping to Canada?

2008-12-08 Thread Al Sutton
Why not start a buddy programme... you team up with a buddy in the US, get the device shipped to their house, and then collect it from them and buy them a thankyou gift. It's got to be cheaper than Brightstars PP + Taxes Al. Joe Bowser wrote: Brightstar has a history of screwing up

[android-developers] Re: G1 and PS3 question

2008-12-08 Thread Xavier Mathews
What does this have to do with android? To answer your question i dont think that there an applaction for it you will have to do it manualy. On 12/08/2008, Ryan [EMAIL PROTECTED] wrote: I plan on putting 4-6 gigs of music on my G1. I then want to stream that music using bluetooth or wi-fi to

[android-developers] Re: New SDK Available

2008-12-08 Thread Josh Roesslein
Adding an one app mandatory submission requirement will only result in a surge of untested, low quality apps flooding the app store. I'm sure there will be enough dev phones to go around. If not then its the good old first come first served. :) On Mon, Dec 8, 2008 at 9:58 AM, Al Sutton [EMAIL

[android-developers] Problem configuring build path

2008-12-08 Thread Aniruddha
Hi. I am trying to call one android application from another. Both these applications are working fine independently. The commands I have given are: Intent intent = new Intent(); intent.setClassName(android.sip.simpleclient, android.sip.simpleclient.SIPclient.class); startActivity(intent);

[android-developers] Re: New SDK Available

2008-12-08 Thread Michael
Except the phones that don't support the networks they use. I.e. the T-Mobile G1. --~--~-~--~~~---~--~~ 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] Re: Android Market HTTP Links?

2008-12-08 Thread mathiastck
Yes you can: http://code.google.com/android/devel/sign-publish.html The Using Intents to Launch the Market Application on a Device section describes the url pattern. It also works if these urls are used on links on pages viewed from and Android phone. They don't work if you just type them

[android-developers] Re: New SDK Available

2008-12-08 Thread don rhummy
Well any phone works with sprint you will just have to pay more if it is not a sprint phone. Wait, I thought the phone didn't work with Sprint. Does it? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[android-developers] Re: New SDK Available

2008-12-08 Thread Xavier Mathews
Well anyone can use the tmobile network i have it on my psp slim. On 12/08/2008, Michael [EMAIL PROTECTED] wrote: Except the phones that don't support the networks they use. I.e. the T-Mobile G1. -- Xavier A. Mathews Student/Browser Specialist/Developer/Web-Master Google Group Client

[android-developers] Re: Android Dev Phone 1 + Shipping to Germany

2008-12-08 Thread blindfold
did anyone who ordered the dev phone receive a upstrackingnumber? Not yet, but that is supposedly to come later (http:// android.brightstarcorp.com/help.php): How can I track my order? Once your order ships, you will receive an email with your shipment tracking information. With the

[android-developers] Re: New SDK Available

2008-12-08 Thread don rhummy
Thanks for the reply. Sorry to be a pest about this but no where in the Google press release did i see anything saying it's only GSM. Where was that specified? --- On Mon, 12/8/08, Josh Roesslein [EMAIL PROTECTED] wrote: From: Josh Roesslein [EMAIL PROTECTED] Subject: [android-developers]

[android-developers] Re: Problem debugging the application -MediaPlayer

2008-12-08 Thread Dave Sparks
I'm not a Java developer, but this seems like a problem in your manifest. On Dec 6, 1:37 pm, sam [EMAIL PROTECTED] wrote: I'm on the 1.0 SDK and I'm having the exact same problem... I spent a few hours on the forums googling, but the only suggestion I can find is to make sure you call

[android-developers] Re: When will we get a Firm Date on app sales

2008-12-08 Thread John Lauricella
I am having trouble making out a development roadmap for my applications in the Android Market without any ideas as to when I will be able to sell them. I realize that the apps now available must remain free, but my decisions on feature sets and possible updates are dependent on how long the

[android-developers] Re: MediaPlayer and onSaveInstanceState?

2008-12-08 Thread ben rosenberg
bump --~--~-~--~~~---~--~~ 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 [EMAIL PROTECTED]

[android-developers] AIDL callback interface from Service to Activity oddity

2008-12-08 Thread DulcetTone
I have 2 activities (call them 1 and 2), Activity 1 includes a Service. If the Service tries to make an AIDL call to Activity 1, the call works fine. If, however, the Service tries the same AIDL call to Activity 2 (the remote activity), it never arrives for processing at the remote activity.

[android-developers] Show images from internal and external content

2008-12-08 Thread fala70
Hi, I am going crazy to show a few images from Media.INTERNAL_CONTENT_URI or Media.EXTERNAL_CONTENT_URI. I need to show a few images from Internal or External memory, using an Activity similar to ImageSwitcher1.java from ApiDemo. I know if the image is on Internal or External memory and I know

[android-developers] Re: Rotate MapView

2008-12-08 Thread David C
Bump can anyone provide insight here? Did the MapView onDraw() API change to final at some point? If the recommended method to rotate a MapView is canvas.rotate() how can that be achieved if not via onDraw()? Personally I'd prefer to see the MapView API extended to support setBearing() or

[android-developers] Re: Resources for Android Wifi Programming

2008-12-08 Thread Doughy
Ok, thanks for your help. Is it possible to compile/run code from the Eclipse plugin so that the application runs directly on the device via the USB cable? Or do I need to create the file, then navigate to it separately from the phone? On Dec 7, 11:23 am, Jean-Baptiste Queru [EMAIL PROTECTED]

[android-developers] Out Of Memory issue

2008-12-08 Thread elephantbug
Hi, Our application sometimes runs out of memory, especially on the map view. Below it the exception we got, anyone can give any hint about what might be the cause? Is there any known issue about MapView? W/System.err( 193): OutOfMemory E/MapView ( 193): IllegalStateException on drawMap.

[android-developers] Re: Android Market HTTP Links?

2008-12-08 Thread cyntacks
mathiastck, Awesome! I completely missed that... This completes my app, now lets just hope the rigorous in emulator testing was enough for the real device. Thanks again, Kevin On Dec 8, 2:37 pm, mathiastck [EMAIL PROTECTED] wrote: Yes you can:

[android-developers] Re: New SDK Available

2008-12-08 Thread Josh Roesslein
Here are some specs on the G1 -- http://www.htc.com/www/product/g1/specification.html Of interest is the networking section. HSPA/WCDMA and Quad-band GSM/GPRS/EDGE are supported. Keep in mind WCDMA is a lot different than the standard CDMA. Its often called UMTS and the only major telecoms in

[android-developers] Re: G1 and PS3 question

2008-12-08 Thread Michael
I'm doing this right now with Music Player Daemon (http:// www.musicpd.org/) and an application I wrote for Android to control the player (currently unreleased). It works great but my music is stored on the server, not on the G1. If you want to keep your music on the G1, you'd need a player

[android-developers] Re: Weird Map Problem (Controlling same map)

2008-12-08 Thread mscwd01
I've had a look at the documentation you suggested, however I think im misunderstanding how you launch a new activity in a seperate process. Is there a demo which illustrates this? On Dec 8, 12:36 pm, Mark Murphy [EMAIL PROTECTED] wrote: mscwd01 wrote: If only one MapActivity is allowed per

[android-developers] developer needed to write a theme application

2008-12-08 Thread androidinsider
Greetings, Android Insider is looking for a developer to create a theme application that switches between custom themes for Android OS. We need you to figure out current possibilities and ways of skinning Android OS. Unlike others, this is a paid job, and PAY IS GOOD. Please reply to this

[android-developers] Text Messages

2008-12-08 Thread tanshi...@gmail.com
Hi there. Unfortunately there aren't any functions once a text message has been received. For example, could you create the following: Use detail: you can select either phone number, email address or web address from the message sent to you Forward Edit Get Message details If you are sent a

[android-developers] Re: How can I send CJK text via SMS on G1

2008-12-08 Thread pusher
Yes. It's very interesting for me too. --~--~-~--~~~---~--~~ 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

  1   2   >