[android-developers] Google Voice Automatic Sign-in

2009-11-03 Thread Micah
I wiped my phone back to factory defaults, then signed into the phone with my Google Account, then download and install Google Voice. When I launched Google Voice for the first time a dialog showed up and asked, Sign in as mygoogleacco...@gmail.com? When I clicked the Yes button Google Voice

[android-developers] Re: Need an invitation to google Wave?

2009-11-03 Thread dsurrea
Please invite me too. My email dsu...@gmail.com On 1 ноя, 09:20, Auguste Lunang legraphi...@gmail.com wrote: Hi, i have some google wave. invits to share. tell me if u want .. thx -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

Re: [android-developers] Google Voice Automatic Sign-in

2009-11-03 Thread krishna chaitanya kambhampati
if you have google wave invitation please send me once kkc.kambhamp...@gmail.com Thanks Regards, K. Krishna Chaitanya On Tue, Nov 3, 2009 at 1:39 PM, Micah mi...@zoltu.net wrote: I wiped my phone back to factory defaults, then signed into the phone with my Google Account, then download and

Re: [android-developers] Re: Need an invitation to google Wave?

2009-11-03 Thread krishna chaitanya kambhampati
please invitation kkc.kambhamp...@gmail.com Thanks Regards, K. Krishna Chaitanya On Tue, Nov 3, 2009 at 1:47 PM, dsurrea dsu...@gmail.com wrote: Please invite me too. My email dsu...@gmail.com On 1 ноя, 09:20, Auguste Lunang legraphi...@gmail.com wrote: Hi, i have some google wave.

[android-developers] Re: Setting up a proxy server for android emulator

2009-11-03 Thread duykham
Hi Gath, Seems -http-proxy parameter does not work with emulator. In order to use proxy for emulator, you can follow the guideline I posted on my blog. This link: http://duykham.blogspot.com/2009/11/setting-proxy-for-android-by-gui.html Hope this help. On Oct 14, 8:28 pm, Gath

[android-developers] Re: -http-proxy for emulator on Android 1.6?

2009-11-03 Thread duykham
Hi Marc, Seems -http-proxy parameter does not work with emulator. In order to use proxy for emulator, you can follow the guideline I posted on my blog. This link: http://duykham.blogspot.com/2009/11/setting-proxy-for-android-by-gui Hope this help. P/S: It works well with all versions from

[android-developers] native camera access

2009-11-03 Thread Girish
In my application i want to pass the camera data to native layer. what is the best possible approach for doing the same. I know it can be done 2 ways. 1.start the camera in application and pass the preview data to native layer. But i feel this may consume lot of resources. 2.Start the camera

[android-developers] text animation

2009-11-03 Thread npak...@gmail.com
Hi all, Now i want to write an application to make a certain text to run slowly from right side screen to left side screen and rotate to repeat. How can i do that? Please help me ! Thanks all, NPAK -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] text animation

2009-11-03 Thread Saurav
TranslateAnimation Regards, Saurav Mukherjee. On Tue, Nov 3, 2009 at 2:49 PM, npak...@gmail.com npak...@gmail.com wrote: Hi all, Now i want to write an application to make a certain text to run slowly from right side screen to left side screen and rotate to repeat. How can i do that?

[android-developers] Can Ascender Compact Asian Fonts support for Myanmar Language

2009-11-03 Thread nandarpwintoo
Is it true that Ascender Compact Asian Fonts (ACAF) solution which has been enabled on the Android platform. That font's enable for Myanmar Language. Is there anyway to use this font free -- You received this message because you are subscribed to the Google Groups Android Developers group. To

[android-developers] Re: Can not see my devices on adb devices or DDMS

2009-11-03 Thread Christopher
Hi there, Quick question: have you ensured that USB debugging is still enabled on the HTC Magic after the software upgrade? As for the other devices, I noticed that when I installed the 2.0 SDK components, it wiped out the contents of my ~/.android/adb_usb.ini file. Before I could connect to

Re: [android-developers] text animation

2009-11-03 Thread Anh Khoa Nguyen Pham
Thank Saurav Mukherjee, I'm trying to use it but because I'm a newbie in this field, so if possible, please give me a simple example to illustrate this animation. Thank alot, NPAK On Tue, Nov 3, 2009 at 4:30 PM, Saurav to.saurav.mukher...@gmail.comwrote: TranslateAnimation Regards,

[android-developers] Different versions of searchable.xml for different sdk targets?

2009-11-03 Thread Perty
Hi! I have implemented a SearchManager which make uses of a searchable.xml with all the settings and put it in the xml/ directory. I tried to create a new directory called xml_v4/ to add some attributes (the android:includeInGlobalSearch ie) which isn't supported in sdk3/1.5 but the xml

[android-developers] Re: Avoid Force Close Message Box

2009-11-03 Thread Tim
Use logcat to see what the exception is. The catch it and handle it appropriately. On Nov 3, 5:07 am, Honest honestsucc...@gmail.com wrote: Generally the exception comes when http connection is running and suddenly wifi goes off then it gave exception. This is real time problem so we can not

Re: [android-developers] Re: Android SDK not working on Windows 7

2009-11-03 Thread Edo Noordhuizen
Hi! I contacted my pc manufacturer about the issue, they weren't any help. I am sure though that the cause of the issue has something to do with preinstalled windows 7 versions! I don't know where the problem really lies, maybe Java reads the wrong registry key or those preinstalled windows 7

[android-developers] Re: How to Implement Ticker Component.

2009-11-03 Thread Gulfam
Any Response on this issue?? I am still waiting . Gulfam Hassan On Nov 2, 9:21 pm, Gulfam gulfa...@gmail.com wrote: Hi all,    I want to make Ticker Component but i dont know how to do this. I have seen Marquee but it start scroll on focus but i dont want. I want to scroll text if it is

[android-developers] After call fork(), sub-process can't be executed

2009-11-03 Thread linlone9
hi, In recent release of Android, I suddenly find the fork() will NOT run sub-process once parent-process exit. For example, following program will only output main(), not output sub-process continue: printf(main()\n); pid_t pid = fork(); if(pid

[android-developers] Re: Android SMS Limit

2009-11-03 Thread Christopher
Hi there, You'll only be able to override this limit if you can build your own version of the Android platform with updated settings built-in, or can get root access to the devices you're using in the field. Either way, you can alter the SMS rate-limiting as follows: # sqlite3

[android-developers] Re: Possible to rescan sd-card with Media Scanner?

2009-11-03 Thread Pavol Ban
Oh man.. after 3 days of searching and bothering a couple people ive finally found the solution.. this one line of code: sendBroadcast(new Intent(Intent.ACTION_MEDIA_MOUNTED, Uri.parse (file:// + Environment.getExternalStorageDirectory(; thats it.. it sends an intent

[android-developers] Re: AlertDialog setSingleChoiceItems

2009-11-03 Thread Éva Lovrencsics
The solution was: removeDialog(int). Evi 2009/10/30 Éva Lovrencsics lovi...@gmail.com: Hello, I have an AlertDialog with single choice items, but these items sometimes change, so I have to update the radiobuttons array every time when the dialog is showed. I know there is a method called

Re: [android-developers] Re: Problem download source code in linux (ubuntu 8.04)

2009-11-03 Thread xianhao lv
Thank you very much. Your solution works very well. Thanks again~ [?][?][?] 2008/11/18 fajaven faja...@gmail.com It seems we should place repo script into ~/bin dir OR /bin dir. I got the same error when I place the repo script into my own dir. After changing to /bin dir, and remove

[android-developers] How to get all the log from phone reboot to IDLE

2009-11-03 Thread linlone9
hi, I want to get all the log info from phone reboot to enter IDLE screen. Using this reboot log info, I can debug some initialized prcocess. Thanks. -- 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: How to get all the log from phone reboot to IDLE

2009-11-03 Thread Al Sutton
Please stop cross posting. Pick the most appropriate group from http://developer.android.com/intl/zh-TW/community/index.html and email to that one only. Al. -- * Looking for Android Apps? - Try http://andappstore.com/ * == Funky Android Limited is registered in England Wales with the

Re: [android-developers] How can I disable the HOME key in my activity?

2009-11-03 Thread kyo xiaoyi
But I do see some screensavers diable it, I just wondering how can they do that? 2009/11/3 Romain Guy romain...@google.com You can't. On Mon, Nov 2, 2009 at 6:51 AM, kyo xiaoyi kyored...@gmail.com wrote: I try to rewrite the method onKeyDown, like this: @Override public boolean

[android-developers] Re: Stable contact identity CONTENT_LOOKUP_URI

2009-11-03 Thread jarkman
Dmitri - thanks - that's very helpful. I have a couple more questions, if that's OK: In the short term, if we do not use the lookup URI, and go on storing record IDs, we will clearly lose track of a contact when aggregation or dis-aggregation of a contact takes place. Are there any other

[android-developers] Trouble setting contact photos with ContactsContract

2009-11-03 Thread jarkman
I'm happily retrieving contact photos with the new ContactsContract APIs and cursor.getBlob, but I'm having great trouble working out how to set a contact photo. I believe I have the right URI (at least, it works for retrieving the photo), but it just won't work for updating or adding one.

[android-developers] Change ListView Color

2009-11-03 Thread Nemat
Hi I want to set the background color of ListView as white.I tried this: getListView().setBackgroundColor(color.white); getListView().setCacheColorHint(color.transparent); But it doesnt change the color.What should I do? Thanks in advance Nemat -- You received this message because you

[android-developers] Re: Need an invitation to google Wave?

2009-11-03 Thread Gary Thomas
Please add samoht.y...@gmail.com to the list Thanks On Nov 3, 1:22 am, krishna chaitanya kambhampati kkc.kambhamp...@gmail.com wrote: please invitation  kkc.kambhamp...@gmail.com Thanks Regards, K. Krishna Chaitanya On Tue, Nov 3, 2009 at 1:47 PM, dsurrea dsu...@gmail.com wrote: Please

Re: [android-developers] Google Voice Automatic Sign-in

2009-11-03 Thread Disconnect
You sign it with the google key. :( There is no other way right now. On Tue, Nov 3, 2009 at 3:09 AM, Micah mi...@zoltu.net wrote: I wiped my phone back to factory defaults, then signed into the phone with my Google Account, then download and install Google Voice.  When I launched Google Voice

[android-developers] Re: Quick Contacts popup

2009-11-03 Thread jarkman
Jeff - is there any way to add our app to the QuickContact app list, so we show up when the user taps the badge ? I'm guessing this will come down to an intent filter, but I can't work out what it ought to be. Thanks, Richard On Oct 30, 6:02 pm, Jeff Sharkey jshar...@android.com wrote: The

[android-developers] [Android-developers] Display APIs in Android?

2009-11-03 Thread Latha Shivanna
Hii All Can anybody please tell me how can we display a buffer on screen? Currently I create a bitmap using Bitmap's CreateBitmap() and render it on screen using canvas' drawBitmap(). Is there any other way of doing this in Java layer? Please do share your thoughts. thanks in advance Latha

[android-developers] Re: Need an invitation to google Wave?

2009-11-03 Thread Toz
So kind of you! Please invite me once! Thanks! On 11月1日, 下午2时20分, Auguste Lunang legraphi...@gmail.com wrote: Hi, i have some google wave. invits to share. tell me if u want .. thx -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

Re: [android-developers] Re: Need an invitation to google Wave?

2009-11-03 Thread Tamas Jozsa
Hi, Please invite me to. Thanks, Tamas 2009/11/3 Toz tozc...@gmail.com So kind of you! Please invite me once! Thanks! On 11月1日, 下午2时20分, Auguste Lunang legraphi...@gmail.com wrote: Hi, i have some google wave. invits to share. tell me if u want .. thx -- You received this message

[android-developers] How to add file .sqlite extension to our project

2009-11-03 Thread Archana
Hi.. Can anybody tell me whether android support file with .sqlite extension? how can we add this file to our project.?is it same as .db file?i have one file with .sqlite extension.I need to fetch data from that. i dont understand how to add it.Please help. -- You received this

Re: [android-developers] Need an invitation to google Wave?

2009-11-03 Thread Satish Bellapu
one for me :) also Please 2009/11/3 ●๋• Pяคиค√●๋• wowpra...@gmail.com Please send me one! Thanks! /Pranav 2009/11/1 Auguste Lunang legraphi...@gmail.com Hi, i have some google wave. invits to share. tell me if u want .. thx -- You received this message because you are subscribed to

[android-developers] how to know if it the emulator or device

2009-11-03 Thread Zhihong GUO
Hi all, How to know if the application is running on emulator or on a real device? I want to implement a function to detect wifi connection. If the application is running on emulator, just skip the wifi detection, while on real device, the wifi connection check should be done. how to do that?

Re: [android-developers] how to know if it the emulator or device

2009-11-03 Thread Mark Murphy
How to know if the application is running on emulator or on a real device? The ANDROID_ID secure setting should be null on the emulator and non-null on a device. -- Mark Murphy (a Commons Guy) http://commonsware.com Android App Developer Books: http://commonsware.com/books.html -- You

Re: [android-developers] how to know if it the emulator or device

2009-11-03 Thread sham shamcs
In Linux ,use *adb devices* command to see which one is running. On Tue, Nov 3, 2009 at 6:59 PM, Zhihong GUO gzhh...@gmail.com wrote: Hi all, How to know if the application is running on emulator or on a real device? I want to implement a function to detect wifi connection. If the

Re: [android-developers] [Android-developers] Display APIs in Android?

2009-11-03 Thread sham shamcs
you can use opengl also On Tue, Nov 3, 2009 at 5:54 PM, Latha Shivanna latha...@gmail.com wrote: Hii All Can anybody please tell me how can we display a buffer on screen? Currently I create a bitmap using Bitmap's CreateBitmap() and render it on screen using canvas' drawBitmap(). Is

Re: [android-developers] How to add file .sqlite extension to our project

2009-11-03 Thread sham shamcs
I believe Android supports sqlite. There is a sqlite library in Android. I didnt use it.But normally we will add the file using adb command in Linux On Tue, Nov 3, 2009 at 6:25 PM, Archana archana.14n...@gmail.com wrote: Hi.. Can anybody tell me whether android support file with

Re: [android-developers] text animation

2009-11-03 Thread sham shamcs
use animation class in Android. On Tue, Nov 3, 2009 at 2:49 PM, npak...@gmail.com npak...@gmail.com wrote: Hi all, Now i want to write an application to make a certain text to run slowly from right side screen to left side screen and rotate to repeat. How can i do that? Please help me !

Re: [android-developers] Change ListView Color

2009-11-03 Thread sham shamcs
use canvas.drawColor(0xFFCC). On Tue, Nov 3, 2009 at 5:18 PM, Nemat nemate...@gmail.com wrote: Hi I want to set the background color of ListView as white.I tried this: getListView().setBackgroundColor(color.white); getListView().setCacheColorHint(color.transparent); But it doesnt

Re: [android-developers] How to get all the log from phone reboot to IDLE

2009-11-03 Thread sham shamcs
use the command adb bugreport. On Tue, Nov 3, 2009 at 4:29 PM, linlo...@gmail.com wrote: hi, I want to get all the log info from phone reboot to enter IDLE screen. Using this reboot log info, I can debug some initialized prcocess. Thanks. -- You received this message because you are

[android-developers] Re: Anyone know what happened to Cyrket?

2009-11-03 Thread niko20
I'm able to get on the market and stuff now instead of using Cryket.I found an emulator image that had Cynaogen on it,which included the market app. It's pretty sweet, can browse the market, download, etc. on the emulator. Google search it... -niko On Nov 2, 10:56 pm, dadical keyes...@gmail.com

[android-developers] Re: Advice Needed on Application Approach

2009-11-03 Thread Tabibito
Thank you so much for the help! -- 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] Re: how to show a dialog when a activity is running and game is over ?

2009-11-03 Thread xu haojie
Have you read the doc : $ANDROID_HOME/docs/guide/topics/ui/ dialogs.html#AlertDialog ? Maybe it will help you. On Nov 1, 2:39 pm, notenking notenk...@gmail.com wrote:  I want to show a dialog to ask player play again ? when the game is over.I find the code can only add in a activity for dialog

[android-developers] Re: Stable contact identity CONTENT_LOOKUP_URI

2009-11-03 Thread jarkman
Oh - one more question: Am I right in thinking that the lookup URI is not itself a unique, stable identifier ? That is, the lookup URI for one contact may be different at different times. Right now, we store some contact row IDs in a table, along with per- contact settings of our own. We use a

[android-developers] Re: App name/icon problems on Hero after reboot

2009-11-03 Thread Alex
Yep, same problem here with a Sprint HTC Hero, Build 1.29.651.1. Any news here? On Nov 1, 6:47 pm, rooster 808 rich.al...@gmail.com wrote: I'm seeing this frequently on myHEROHTC, but not my G1 Google Dev phone. Almost every power off, I lose the Desktop Icon on the App I'm developing,

[android-developers] DDMS Error on Launch

2009-11-03 Thread Loki117
Hey Guys, Has anyone seen this error before while working with the DDMS? It happens when I try to execute the DDMS from the bat file or when I attempt to access the Heap viewer through eclipse. Any help anyone has would be greatly appreciated. Oh I should also say this happens on every version

[android-developers] Re: text animation

2009-11-03 Thread Gulfam
I want to make same component as mentioned by npak243 any one can help us regarding this. I am trying to use Animation Class but i dont know how to use it. I have also used marquee with text view its work fine but on getting focus but i need to scroll text with in text view if it is ocused or not

[android-developers] Re: Keyboard, detect ALT Locked

2009-11-03 Thread vovkab
Any examples on how to detect locked state (shift or alt)? On 30 окт, 18:09, vovkab vov...@gmail.com wrote: Any examples on how to detect locked state (shift or alt)? On Oct 29, 10:04 pm, Dianne Hackborn hack...@android.com wrote: Again, there is no lock state in general.  The text

Re: [android-developers] Re: App name/icon problems on Hero after reboot

2009-11-03 Thread Justin Giles
Nope. I followed the instructions that I posted earlier and reset my phone and IMMEDIATELY disabled the HTC Sense UI. I haven't had these problems since. Haven't heard anything from HTC on my ticket with them (not even a thank you for your inquiry email). I'm hoping they know about this and

[android-developers] Re: DDMS Error on Launch

2009-11-03 Thread Loki117
Additional information the DDMS heap window is showing this error in eclipse Could not create the view: Could not initialize class org.jfree.chart.JFreeChart I believe this happened after installing 2.0. On Nov 3, 9:55 am, Loki117 thomas.sheppar...@gmail.com wrote: Hey Guys, Has anyone seen

[android-developers] Re: DDMS Error on Launch

2009-11-03 Thread Loki117
Ok my bad turns out my class path was corrupt in the enviro variables. On Nov 3, 10:19 am, Loki117 thomas.sheppar...@gmail.com wrote: Additional information the DDMS heap window is showing this error in eclipse Could not create the view: Could not initialize class org.jfree.chart.JFreeChart I

Re: [android-developers] Different versions of searchable.xml for different sdk targets?

2009-11-03 Thread Romain Guy
The syntax is xml-v4/, with a dash instead of an underscore. On Tue, Nov 3, 2009 at 1:55 AM, Perty pertyj...@gmail.com wrote: Hi! I have  implemented a SearchManager which make uses of a searchable.xml with all the settings and put it in the xml/ directory. I tried to create a new directory

[android-developers] Re: Android heap limit and resources

2009-11-03 Thread Nightwolf
You should try writing some test application with SoundPool. It's possible that you'll run out of memory sooner than you expect. It seems that SoundPool can't allocate more than 1 MB and uncompressed audio reaches this limit pretty quick. On 2 ноя, 17:09, renato.grottesi renato.grott...@gmail.com

Re: [android-developers] [Android-developers] Display APIs in Android?

2009-11-03 Thread Latha Shivanna
I need some 2D apis. can anybody suggest something? Are there any ways to display a buffer on screen in native layer? I am aware of using some ioctl calls on /dev/graphics/fb0.(But it needs root access) Please do advise. -Latha On Tue, Nov 3, 2009 at 7:12 PM, sham shamcs shamc...@gmail.com

[android-developers] Clear Activity stack?

2009-11-03 Thread Mark Wyszomierski
Hi, Is there a way to clear our Activity stack? For example, a user in my app progresses through these activities, one is launched from the previous activity: ActivityA - ActivityB - ActivityC if the user is now looking at ActivityC, and they hit the back button, they will go back to

Re: [android-developers] Documentation deficiencies.

2009-11-03 Thread Greg Donald
On Tue, Nov 3, 2009 at 5:21 PM, Mark Murphy mmur...@commonsware.com wrote: Google does not get a 30% take on all our app sales -- that goes to the carriers. Ahh.. carriers.. companies who get to charge $36 to put a row in a customer database. -- Greg Donald http://destiney.com/ -- You

[android-developers] Re: ProgressDialog went back to the first view called it when dismiss()

2009-11-03 Thread Larry
the show() and dismiss() of the dialog, even the new ProgressDialog() are all inside Handler message processing codes. I don't think I need to user AsyncTask here even it is very useful. Basically the Handler receives data, updates the UI and dismisses the dialog. Then Bang! the Login View shows

[android-developers] Re: Android SDK not working on Windows 7

2009-11-03 Thread hoss spence
Actually I just tried it and it worked. The only thing I can think of was that I rebooted and perhaps that fixed something environmental. I looked more closely and Edo's original problem and realize I had a different issue anyway . Mine was looking for some resource that it couldn't find. My

[android-developers] Re: Need an invitation to google Wave?

2009-11-03 Thread GSC
I would really enjoying having an invite to Google Wave Thanks On Nov 1, 1:20 am, Auguste Lunang legraphi...@gmail.com wrote: Hi, i have some google wave. invits to share. tell me if u want .. thx -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] ProgressDialog went back to the first view called it when dismiss()

2009-11-03 Thread Jason Proctor
what does your code do when the asynchronous operation is complete? do you register an onDismiss() for the ProgressDialog? seriously though i would advise anyone doing anything with threads and progress dialogs to use AsyncTask. this wonderful class decouples the task from the caller and has

[android-developers] Re: Android SDK not working on Windows 7

2009-11-03 Thread jotobjects
Hoss - what happens if you type echo %USERNAME% and echo %USERPROFILE% in a command window? On Nov 3, 2:08 am, Edo Noordhuizen edo.noordhui...@gmail.com wrote: Hi! I contacted my pc manufacturer about the issue, they weren't any help. I am sure though that the cause of the issue has something

[android-developers] Re: ProgressDialog went back to the first view called it when dismiss()

2009-11-03 Thread Jason Proctor
do you have an onDismiss handler for the progress dialog? i used to use Handlers, now i use AsyncTask. i'd never go back :-) the show() and dismiss() of the dialog, even the new ProgressDialog() are all inside Handler message processing codes. I don't think I need to user AsyncTask here even

[android-developers] Fwd: Seminarios Tecnológicos e n Fundación Proydesa

2009-11-03 Thread David Fire
mis queridos tal vez les llegue algo de proydesa aparte de hacer spam son un pesimo y asqueroso instituto de tecnologia. dan verguenza los profesores son malisimos no saben nada de nada y aparte es caro. a los inutiles de proydesa ya les habia dicho que no me manden spam esto esta con cco a todos

[android-developers] Re: Failed to fetch URL https://dl-ssl.google.com/android/repository/repository.xml

2009-11-03 Thread elsamuko
Ubuntu Karmic 9.10 32 bit here: It works now via http for me. But I had to delete the old ~/.android folder before. Maybe this works for you. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Re: Need an invitation to google Wave?

2009-11-03 Thread ferly sky
Hi, I want to get an invitation, thanks. 2009/11/3 Tamas Jozsa tjo...@gmail.com Hi, Please invite me to. Thanks, Tamas 2009/11/3 Toz tozc...@gmail.com So kind of you! Please invite me once! Thanks! On 11月1日, 下午2时20分, Auguste Lunang legraphi...@gmail.com wrote: Hi, i have some

[android-developers] Rotate Activity screen

2009-11-03 Thread Batuka
Hi all pls help me what i wont for example my g1 is Orentation enable and when my app start with screen rotate 90 then should be no rotating you know help me exam code pls THANKS -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

回复: [android-developers] Need an invitation to google Wave?

2009-11-03 Thread JHLIJUN
I want one too, thanks! -- 原始邮件 -- 发件人: Satish Bellapusatishbabu...@gmail.com; 发送时间: 2009年11月3日(星期二) 晚上9:55 收件人: android-developersandroid-developers@googlegroups.com; 主题: Re: [android-developers] Need an invitation to google Wave? one for me :) also

[android-developers] Re: Poll Screen On/Off state

2009-11-03 Thread gudujarlson
You can't poll screen on/off state.  The best you can do is to register a BroadcastReceiver, and wait for an Intent to come along. Until that first Intent is received, you'll have no idea what the screen state is. Yes, that is how it appears and thus why I posted. It seems like a important

Re: [android-developers] Re: Advice Needed on Application Approach

2009-11-03 Thread Dianne Hackborn
It is a sticky broadcast so you receive the last published value. On Tue, Nov 3, 2009 at 10:48 AM, Tabibito kawaiije...@gmail.com wrote: For some reason onCallStateChanged gets triggered with a state of CALL_STATE_IDLE on phone startup... perhaps because it is changing from undefined to

[android-developers] Re: ProgressDialog went back to the first view called it when dismiss()

2009-11-03 Thread Jason Proctor
ok i'm just wondering what's causing the view to change after the progress dialog goes away. one crazy theory i had was that you had a rogue onDismiss(). anything funky in the ddms log? is your activity being restarted somehow? Guess I need to move to AsyncTask asap... No I don't have

[android-developers] Re: Processing Pictures

2009-11-03 Thread polyclefsoftware
Thanks for the reply. :) Using ColorMatrix and ColorMatrixFilter, I now see how to transform a color image into grayscale, although I'm not sure at this point how to convert it to monochrome, i.e. a pencil-drawn effect, with only pure black and pure white. What might be the best way to handle

[android-developers] Requesting invitation to Google Wave - please, pretty please?

2009-11-03 Thread James
I've had my application in for a Wave membership for months it would be great if any of you could help me accelerate the process! And of course, if I get in and have some invitations to pass out, I'll be happy to return the favor! Jim tc4...@gmail.com -- You received this message because

[android-developers] Re: Approaches to Security for Web Backed Applications

2009-11-03 Thread linus.nikander
The only fail-safe solution i know of is letting the server play the game for the user. I.e. you make the client a GUI on top of what is happening on the server (a whole slew of issues are inherent to this approach as I'm sure you realize). Letting the client tell your server 'this is what I

[android-developers] Re: Need an invitation to google Wave?

2009-11-03 Thread Utopar
I hope that you still have some left. Please, I would love to receive one. Thank you. - jeffmer...@gmail.com On Nov 1, 1:20 am, Auguste Lunang legraphi...@gmail.com wrote: Hi, i have some google wave. invits to share. tell me if u want .. thx -- You received this message because you are

[android-developers] Re: Advice Needed on Application Approach

2009-11-03 Thread Tabibito
For some reason onCallStateChanged gets triggered with a state of CALL_STATE_IDLE on phone startup... perhaps because it is changing from undefined to CALL_STATE_IDLE? Does anyone know how to distinguish this scenario from a hangup? Is there a way to see the previous call state, i.e. the state

[android-developers] Re: App name/icon problems on Hero after reboot

2009-11-03 Thread gdonald
On Oct 29, 12:58 pm, Dianne Hackborn hack...@android.com wrote: If this is only happening on Hero, it needs to be reported to HTC, not as a generic platform bug. I reported the issue to HTC and they said they couldn't reproduce it, didn't ask me a firmware version or anything. See their

Re: [android-developers] Clear Activity stack?

2009-11-03 Thread James Yum
Hi Mark, http://developer.android.com/reference/android/content/Intent.html#FLAG_ACTIVITY_CLEAR_TOP http://developer.android.com/reference/android/content/Intent.html#FLAG_ACTIVITY_CLEAR_TOP Cheers, James On Tue, Nov 3, 2009 at 9:00 AM, Mark Wyszomierski mar...@gmail.com wrote: Hi, Is there

[android-developers] Re: Device orientation - mapping device Y to screen Y

2009-11-03 Thread Ian
*ping* -- anyone got any ideas on this? It seems like kind of a hole... -- 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] Re: Trouble with getting proximity alerts

2009-11-03 Thread Arun
I found out the problem. The lattitudes and longitudes should be in Double. I was using Int. On Nov 2, 11:56 pm, jay mojnidar jay.mojni...@gmail.com wrote: All, SDK: 1.6 Firmware Version: 1.5 I am trying to get an alert when I get to my home. But, it looks like I am not receiving the

Re: [android-developers] Re: How to pass large amount of data during startActivityForResult

2009-11-03 Thread Mark Murphy
tomei.ninge...@gmail.com wrote: Does anyone have a real answer? That *is* a real answer. As is using a service -- which is probably the direction I would go, given the limited info you have provided -- but you rejected that out of hand. I need to do this. As I wrote, you need to have two

[android-developers] Re: How to pass large amount of data during startActivityForResult

2009-11-03 Thread tomei.ninge...@gmail.com
Does anyone have a real answer? I need to do this. If you don't know how to do it please don't feel obliged to reply to tell me it's not an androidie thing to do. On Nov 3, 3:32 pm, Mark Murphy mmur...@commonsware.com wrote: tomei.ninge...@gmail.com wrote: From one activity, I want to pass a

[android-developers] Re: How to pass large amount of data during startActivityForResult

2009-11-03 Thread Jason Proctor
why is using a static data member not a real solution? i have the same requirement and i use globally accessible singletons (containing static references) to share stuff between my activities. works like a charm. feels real. i don't know whether this adds realness, but WebKit shares its cookie

Re: [android-developers] Poll Screen On/Off state

2009-11-03 Thread Mark Murphy
gudujarlson wrote: I have an app that runs in the background indefinitely provided there is work to be done. I want the app to go to sleep if there is no work to be done and the user is idle. What does the user being idle have to do with anything here? If there is no work to be done, there is

[android-developers] Re: Setting RFCOMM/SPP Bluetooth Baud rate

2009-11-03 Thread Aakash Patel
Then how are we supposed to initiate communications with a serial Bluetooth device? On Nov 3, 8:16 pm, Nick Pelly npe...@google.com wrote: On Thu, Oct 29, 2009 at 12:23 PM, Aakash Patel aakashbpa...@gmail.com wrote: Hello, I am making an app that utilizes the BlutoothSocket API and am

[android-developers] Re: ProgressDialog went back to the first view called it when dismiss()

2009-11-03 Thread Larry
Problem fixed. Turns out it was a stupid code mistake. Thanks for the help tho. On Nov 3, 7:08 pm, Larry lar...@gmail.com wrote: No it's not restarted. I even tried to put a third view to test it. The third view will disappear and the Login view will display when dialog dismisses exactly the

[android-developers] Database Errors

2009-11-03 Thread Radzell
I been working on this code dealing with my database for days i can figure out whats wrong. Heres my code: package com.helpihelpyou; import android.content.ContentValues; import android.content.Context; import android.database.Cursor; import android.database.SQLException; import

[android-developers] Re: Need an invitation to google Wave?

2009-11-03 Thread ClarkBattle
I'd love one! Thanks On Oct 31, 10:20 pm, Auguste Lunang legraphi...@gmail.com wrote: Hi, i have some google wave. invits to share. tell me if u want .. thx -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

Re: [android-developers] Database Errors

2009-11-03 Thread Dmitri Plotnikov
I am afraid CHECK is a reserved word in SQL, see http://developer.mimer.se/validator/sql-reserved-words.tml Cheers, - Dmitri On Tue, Nov 3, 2009 at 3:08 PM, Radzell basketballd...@gmail.com wrote: I been working on this code dealing with my database for days i can figure out whats wrong.

[android-developers] Re: Anyone know what happened to Cyrket?

2009-11-03 Thread polyclefsoftware
Yeah, I'm missing me some Cyrket as well. And AndroLib is slow to update. On a related note, anyone else notice that AndroidStats (http:// androidstats.com/) hasn't updated for a number of days? I hope Google didn't make some major change that's going to cripple these sites, unless of course they

[android-developers] Problem RemotableViewMethod while extending TextView

2009-11-03 Thread bostwick
Hi all, I'm just getting into Android development, coming from a mostly ruby and scheme with some Java background. For a first project, I decided to try and build a stopwatch. The included Chronometer widget doesn't quite have the functionality I wanted, so I copied its code into my own package.

[android-developers] Re: Regarding the database schema of Android native database

2009-11-03 Thread PJ
If there isn't any documentation, you could always get the schema directly from the source. Read the section Examining sqlite3 Databases from a Remote Shell from the Dev Guide: http://developer.android.com/guide/developing/tools/adb.html#sqlite This describes how to view databases for an

[android-developers] How to pass large amount of data during startActivityForResult

2009-11-03 Thread tomei.ninge...@gmail.com
From one activity, I want to pass a lot of data (about 1MB of Strings). I tried sticking it in Intent.putExtra(ArrayListString), but if I put in too much data, I get FAILED BINDER TRANSACTION. What's the easiest way? I don't want to publish a service, or use the file system. I really want a pipe

[android-developers] launching settings from my app

2009-11-03 Thread Beth
Hi there, Has anybody got the right intent to open sound settings? I find that this line of code: startActivity(new Intent (android.provider.Settings.ACTION_SETTINGS)); works great, while this line, which should open exactly the Settings panel I need to show, does not work at all and my

[android-developers] Re: Is Orientation Sensor a Phyiscal Sensor Different from the Accelerometer?

2009-11-03 Thread Mohamed Amir
Good point :-) Thank you. On Nov 3, 3:06 am, Dan Sherman impact...@gmail.com wrote: Probably because we're not sure, and because it could very easily differ per-device... On Mon, Nov 2, 2009 at 7:56 PM, Mohamed Amir mohamed.a...@gmail.com wrote: and I don't know why no one replies.  I

[android-developers] Re: Problem running a compiled/packaged-with-v1.6 application on v1.5

2009-11-03 Thread Lance Nanek
Hmm, I have an app that similarly uses a PreferenceActivity and build target 1.6, but it runs fine on the 1.5 emulator. I wonder what we are doing different. Is your activity just the basic form like this? public class Preferences extends PreferenceActivity { @Override protected

[android-developers] Segfault in what looks like WebView

2009-11-03 Thread Dan Sherman
Hey guys, we just launched a new game (Super Game Pack) in the market, and got a segfault on a 1.6 emulator... From what I can decipher, looks to be coming from a webview component... Is there any way to track it further, or figure out exactly what's causing it? Its relatively rare, so its a bit

Re: [android-developers] Need an invitation to google Wave?

2009-11-03 Thread ferly sky
能给我一个吗,ferly...@gmail.com, 谢谢 2009/11/1 Auguste Lunang legraphi...@gmail.com Hi, i have some google wave. invits to share. tell me if u want .. thx -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

  1   2   >