[android-developers] Re: Android developer challenge II

2008-12-27 Thread C-LIS Keiji Ariyama
Hi BardieDahl, I'm sorry. I don't know actually when ADC II is going to be launched. However, I think Google have been thinking that Android Dev Phone 1 is the STANDARD Android phone. And I suppose that ADC II will be launched soon. -- Keiji, ml_andr...@c-lis.co.jp BarbieDahl wrote: > Has an

[android-developers] Re: Undocumented Intents

2008-12-27 Thread Peli
Not only are basic intents sometimes difficult to find (as they are spread across various packages), but 3rd party developers are free to define their own intents as well. That's why we try to collect intents here: http://www.openintents.org/en/intentstable Peli www.openintents.org On 27 Dez.,

[android-developers] Re: dealing with multiple activities

2008-12-27 Thread Sarath Kamisetty
Hi, Thanks for the tips. Is it possible to pass an arbitrary object to the child activity and back ? The examples I saw were setting stuff inside the intent itself. For example, from parent to child, I query a content provider that returns a bunch or rows displayed by list activity. Once user sel

[android-developers] XMPP through Smack

2008-12-27 Thread jman
After reading many previous posts about XMPP, I am still not sure if anyone actually got XMPP to work for the official SDK 1.0. I had trouble receiving any message. From the logs, I saw this: 12-27 19:43:14.866: WARN/System.err(225): java.security.KeyStoreException: KeyStore jks implementation

[android-developers] How to post values using HttpURLConnection

2008-12-27 Thread Brad Gies
It's ok. I finally found a really good example. Thanks anyway. http://www.java.happycodings.com/Other/code21.html Sincerely, Brad Gies - Brad Gies 27415 Greenfield Rd, # 2, Southfield, MI, USA 48076 ---

[android-developers] Re: dealing with multiple activities

2008-12-27 Thread Emmanuel
Call the second activity with startActivityForResult, add a SetResult ( ... ) with your result just before calling finish in your second activity, then in your first activity, onActivityResult will be called, where you can treat your results. Hope it helps, Emmanuel http://androidblogger.blogspo

[android-developers] List and Expandable List Combo

2008-12-27 Thread mscwd01
Is there a way to have a list view which comprises both expandable lists and normal rows? I.e. List - Row 1 - Row 2 - Row 3 - Row 3 Child 1 - Row 4 - Row 4 Child 1 - Row 4 Child 2 - Row 5 E.g. Row 1, 2 and 5 are simple rows, maybe just TextViews, and Rows 3 an

[android-developers] Re: Why the webkit just send to plugin 20 bytes through NPP_Write

2008-12-27 Thread Tang Sam
Thanks. I have resolved it. 2008/12/27 Mark Murphy > > Slacker wrote: > > I am developing a new plugin for web browser via NPAPI as google > > default android gears plugin. > > But I always get 20 bytes from browser. > > Every time browser call my plugin API "NP_Write" and then send 20 > > bytes

[android-developers] Re: Synchronizing Maps and Map Overlays - ConcurrentModificationException

2008-12-27 Thread mscwd01
hmmm, bump. Still havent worked this out. On Dec 26, 11:59 pm, mscwd01 wrote: > Okay, hope everyone had a nice christmas and has had their fill of > Turkey ;) > Now can anyone help me with this? > > On Dec 24, 11:53 am,mscwd01 wrote: > > > Hello, anyone help me with this please... > > > On Dec 2

[android-developers] Re: Eclipse Error while adding ddms

2008-12-27 Thread jeff
Hi, what is the problem with the JDK if you dont mind sharing..I have the same problem recently... Thanks, On Dec 7, 1:08 am, "Anonymous Anonymous" wrote: > Hi Xav, Ralf, > > Now am able to launch DDMS  and debug built in apps, pblm was with my JDK. > > Thanks a lot for your help > Steve > > On

[android-developers] How to post values using HttpURLConnection

2008-12-27 Thread Brad Gies
Sorry. I've been searching the web, but I can't seem to find a working example. I have a List with about 4 NameValuePairs contained in it, but I can't figure out how to get into the HttpURLConnection. I do know how to do it using the DefaultHttpClient but I was hoping to try the HtttURLConne

[android-developers] Re: managedQuery() terminating the application.

2008-12-27 Thread Sarath Kamisetty
Hi, I have one more question on this. The following query returns all the contacts in the phone. private String[] projection = new String[] { People._ID, People.NAME, People.NUMBER, }; managedCursor = managedQuery(People.CONTENT_URI, projection,

[android-developers] Re: Just got a G1 HELP

2008-12-27 Thread Eric
Wong place to post, go and ask in T-mobiles' forum. This have nothing to do with Android. Cheers Eric Portable Electronics Ltd www.hdmp4.com On Dec 26, 1:31 am, "lauren.coleman...@gmail.com" wrote: > I put my old SIM card into my g1 phone and its saying that there is a > problem, after trying t

[android-developers] Re: Student Developer Deals

2008-12-27 Thread Eric
Sorry, have not seen or heard of one yet. because no one other than HTC have officially release a Android device. I maybe able to help in some ways if you don't need the device urgently. Cheers Eric Portable Electronics Ltd www.hdmp4.com On Dec 25, 6:31 am, JohnStJohn wrote: > Does anyone know

[android-developers] Re: How to add new font to android browse ?

2008-12-27 Thread Milad
I check and if I use ﻣ (char which connect to next char) and ﻦ , it work but when I write in usual mode ( م with ن ) you saw on that photo On Dec 27, 9:37 pm, Milad wrote: > about app's font : > see this photohttp://i43.tinypic.com/jrrako.png > > text should be like : من تست می کنم > but a

[android-developers] Re: dealing with multiple activities

2008-12-27 Thread Mark Murphy
Sarath Kamisetty wrote: > Is there any example out there where one activity creates another > activity and the new activity returns something to the old one ? In my > application, when user clicks on a button, I need to move to a new > activity where I display a list of items and once the user sel

[android-developers] Re: How to add new font to android browse ?

2008-12-27 Thread Milad
about app's font : see this photo http://i43.tinypic.com/jrrako.png text should be like : من تست می کنم but as you seen chars split in textview have you any clue for me ? On Dec 16, 4:31 am, Mike Reed wrote: > Applications can add new fonts, but they are only visible within that   > application

[android-developers] Re: Media Player surprises me!

2008-12-27 Thread Ninad
well yes. I am using two seperate threads. One for Media Player. The code is pretty simple one to prepare and then start the Media Player.. In the other thread, I am trying to read from the sdcard.. I start both thread one after the another. The media player plays for about 2-3 sec. Then the fi

[android-developers] dealing with multiple activities

2008-12-27 Thread Sarath Kamisetty
Hi, Is there any example out there where one activity creates another activity and the new activity returns something to the old one ? In my application, when user clicks on a button, I need to move to a new activity where I display a list of items and once the user selects one of them I have to

[android-developers] Re: Where could I get an ADT 0.9.0?

2008-12-27 Thread Kenny Yu
I built cupcake, which has been merged to master HEAD. The ADT is quite OK. Can you share more info? Kenny On Dec 26, 11:35 am, yukinoba wrote: > To dear all, > > Does anyone have the cupcake? The SDK in there is not applicable to > the ADT plugin (Android Development Tools plugin) of Eclipse a

[android-developers] Help testing on G1

2008-12-27 Thread Steff
Hi I live in denmark, where G1 has still not been released. I have made an application that runs fine on the emulator. I need help getting it tested on a real device - G1. I any of you guys have a G1, and want to try my application, to help me find out if it works, I will be very happy to hear fr

[android-developers] When does one use a SurfaceView vs a View?

2008-12-27 Thread Satya Komatineni
What does SurfaceView abstraction stand for? The documentation suggests that SurfaceView allows a secondary thread to draw on it. When would one specialize View vs SurfaceView? Thanks for your help Satya --~--~-~--~~~---~--~~ You received this message because yo

[android-developers] Re: When will we get root back?

2008-12-27 Thread Disconnect
Its not google. Its tmobile. They decide whether ro.secure is set or not (adb shell as root) and what bins (ahem, su) are shipped. Call 611 and ask (talk to g1/blackberry/smartphone support. not the main pool.) It is their device, and their image, that you are objecting to. (And for fscks sake, goo

[android-developers] What is a good way to download a webpage for offline reading?

2008-12-27 Thread Mariano Kamp
Hi, I was wondering what would be a good way to download a webpage for offline reading? I first thought about downloading the html source, grep it for the image tag's soure attribute and download the image. After rewriting the image tag in a way that it reffers to the local file and

[android-developers] Re: How to reference another GUI xml from within a GUI xml?

2008-12-27 Thread Mariano Kamp
Thank you Marc. That was it. worked fine. On Sat, Dec 27, 2008 at 12:25 AM, Mark Murphy wrote: Mariano Kamp wrote: >let's consider this: You have a list view that shows all emails in > your mailbox, but just their subject and from information. When you > click on a list item to laun

[android-developers] Re: AlertDialog OnKeyListener - How to get Focused Item?

2008-12-27 Thread coderiver
I figured this out so I thought I would share. The handleKeyPress method that is called from my OnKey handler is part of my Activity object. So "this" is an activity not a dialog. So to get the focused item is pretty simple, I needed to keep a reference to the AlertDialog (mAlertDialog in the e

[android-developers] A question about camera of Android SDK 1.0 rc2

2008-12-27 Thread NY
I update from rc1 to rc2 And open default picture app, choose a image, open it then will have a error If back to install rc1, it work right Is it a bug of rc2? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android

[android-developers] Re: How to reference another GUI xml from within a GUI xml?

2008-12-27 Thread Mariano Kamp
Thank you Marc. That was it. worked fine. Cheers, Mariano On Sat, Dec 27, 2008 at 12:25 AM, Mark Murphy wrote: > > Mariano Kamp wrote: > >let's consider this: You have a list view that shows all emails in > > your mailbox, but just their subject and from information. When you > > click on

[android-developers] Re: How to access internet in emulator v1.0

2008-12-27 Thread Tez
Hi, To access internet from within an activity, you need to setup INTERNET permissions in your manifest file. Then you can access the internet either by launching your activity with a WebView or you can use some code that utilizes Android's network layer. Cheers, Earlence On Dec 26, 12:31 pm, "

[android-developers] Re: SHA1 Encryption

2008-12-27 Thread Maxence Warzecha
take a look at : http://www.java2s.com/Code/Java/Security/MessageDigestwithSHA1.htm On 22 déc, 13:22, flash wrote: > Hi, > Is there anyway in android that you canSHA1encrypt a String? > > Thanks --~--~-~--~~~---~--~~ You received this message because you are subsc

[android-developers] Undocumented Intents

2008-12-27 Thread Makeable
I download an app from the marketplace that provides notification of recieved sms. After some searching around in this group, I have found that it is using the SMS_RECIEVED intent from the telephony provider - yet this intent is not documented anywhere in the SDK documentation (that I could find)

[android-developers] Re: Context menu can't be create on MapView.

2008-12-27 Thread honglian...@gmail.com
Would you like to answer me one more question? It seems the context menu is too broad. Would you like to let me know how to set it wrap_content? Thank you very much. On 12月27日, 下午4时31分, "honglian...@gmail.com" wrote: > hi Guillaume > I got it. Thanks for your valuable response. I also implem

[android-developers] using an intent to react when an sms is sent?

2008-12-27 Thread phlogi phlog
Hi there I'm planning to write some code that allows to send sms over a http service. So basically I need to achieve that the current messaging application calls a function from my class of my appliction. Then I need to get the text and establish a connection and so on. Furthermore I need to be a

[android-developers] Re: Having trouble getting ListView to show selected item as highlighted

2008-12-27 Thread Romain Guy
In short: you don't, you can't, you won't :) Explanations here: http://android-developers.blogspot.com/2008/12/touch-mode.html On Fri, Dec 26, 2008 at 3:26 PM, Timothy DeWees wrote: > > Hello, > > I've seen a few post on this but have never seen or understood the > solution. I have an applicat

[android-developers] Re: Usability question: How is user supposed to discover the menu shortcut keys?

2008-12-27 Thread Romain Guy
Keep the menu key pressed once the menu is open. On Sat, Dec 27, 2008 at 12:52 AM, j wrote: > > If there are more than 6 commands, there is a "More" menu item added. > Once opened, the menu list does show the key shortcuts. But if I have > less than 6 commands, the key shortcuts are not display

[android-developers] Re: Taking payments (google checkout)

2008-12-27 Thread Al Sutton
Early Q1 is the most accurate estimate that has been confirmed, beyond that it's just rumours. Al. http://andappstore.com/ tspree15 wrote: > Does anyone have any updated info on when the paid marketplace will be > active? > I know it says Q1, but I was hoping someone had a more exact time > fra

[android-developers] Re: Charging for Apps

2008-12-27 Thread Al Sutton
If you're planning to use a 3rd Party system and distribute your app through Market you'll probably want to read; http://groups.google.com/group/android-developers/browse_thread/thread/1f163a6a4c244c01/c62e169758fed43f AndAppStore will let you list your app with a 3rd Party payment system, as

[android-developers] Re: Charge for Apps (What will Happen?)

2008-12-27 Thread Al Sutton
No plans on the implementation of charging have been released. The Marketplace T&Cs state you can't charge for content users have obtained for free, so the user who have the free apps will still have the free apps and any attempt to charge for them will probably see your Market account suspend

[android-developers] Get Email log

2008-12-27 Thread ena
Hi All, How to get Email log??? Please help me out... Thanks in Advance --~--~-~--~~~---~--~~ 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.

[android-developers] Re: Context menu can't be create on MapView.

2008-12-27 Thread honglian...@gmail.com
hi Guillaume I got it. Thanks for your valuable response. I also implemented it in overlay. On 12月27日, 上午12时06分, "Guillaume Perrot" wrote: > I realized I was calling myself openContextMenu in my code, for tap events > on overlays... > I don't know how to handle long clicks on the map, sorry.

[android-developers] Album Art

2008-12-27 Thread Protocol-X
Does anyone have a working Example of ALBUM_ART, I have tried every example out there and cannot find any that actually retreive the art. the Lack of support on googles behalf on issues seems to be getting greater as well --~--~-~--~~~---~--~~ You received this mes