[android-developers] android twitter app

2011-06-08 Thread yanamala siddaiah
pls provide example to twitter authentication code using android . -- 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

Re: [android-developers] In Android, how to get the keyevent of 'home Key' ?

2011-06-08 Thread Rocky
Hi I did some thing on blog please check that - http://alltechsolution.wordpress.com/2011/04/14/how-to-controldisable-home-button/ 2011/6/8 TreKing treking...@gmail.com 2011/6/7 执迷不悟 goblin_...@foxmail.com In Android, how to get the keyevent of 'home Key' ? Make a Home replacement app.

[android-developers] Re: In Android, how to get the keyevent of 'home Key' ?

2011-06-08 Thread Droid
I need to know when the home button is pressed too (otherwise my app returns to visibility again and again for ever). Is there a hack? (Please don't tell me I need to design my app 'properly', I have been Android dev for over a year now) -- You received this message because you are subscribed to

[android-developers] center dialog title

2011-06-08 Thread bob
What's the easiest way to center the title of a custom dialog on Android? -- 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] How can I know when the home button has been pressed?

2011-06-08 Thread Droid
I have a thread that needs specifically to be cancelled when the home button is pressed. But, nothing reliable gives me that information. (I have over 10 activities all in the stack) -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

Re: [android-developers] Honeycomb keyboard responding to touch events on status bar

2011-06-08 Thread James
I'm guessing that, by 'the IME', you mean the one supplied with Android is a special case, and that any third party IMEs don't get to do this? If so, please consider changing this to make it a general feature available to all IMEs. Thanks James Ots On Wednesday, 8 June 2011 00:44:25 UTC+1,

[android-developers] completion feature

2011-06-08 Thread bob
For some reason, Eclipse's word completion feature totally stopped working for me. Anyone know how to fix this? -- 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

Re: [android-developers] completion feature

2011-06-08 Thread Mohammed Hossain Doula
Restart the eclipse... On Wed, Jun 8, 2011 at 12:44 PM, bob b...@coolgroups.com wrote: For some reason, Eclipse's word completion feature totally stopped working for me. Anyone know how to fix this? -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: android twitter app

2011-06-08 Thread Sherif
check this site http://code.google.com/p/oauth-signpost/wiki/TwitterAndSignpost On Jun 8, 9:17 am, yanamala siddaiah siddaiahforj...@gmail.com wrote: pls provide example to twitter authentication code using android . -- You received this message because you are subscribed to the Google Groups

[android-developers] Creating right arrow for listview

2011-06-08 Thread mike
I need to create a right arrow for a listview item. Is this in a class or do I have to do it manually. How would I do that? ie http://imgur.com/bIv7h -- 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] Display.getRotation() incompatible with accelerometer data

2011-06-08 Thread Dianne Hackborn
Are you sure this is an actual Android compatible device? Does it have Market on it (and thus compatible per the CDD)? If not, there is no telling what kinds of incompatibilities there are. On Tue, Jun 7, 2011 at 10:44 PM, Marcin Mikosik marcin.miko...@gmail.comwrote: * GoClever tab s73 *

[android-developers] Re: Where is the Renderscript running on in Honeycomb?

2011-06-08 Thread uison
Thank you for the reply, again. And again I have a couple of question. I don't want my question to bother you. If so, I'm sorry. Anyway, Here are my questions. 1. DoesRenderscriptfor not only Compute but also Graphics run on the CPU only? Rendering is done using the GPU.' There is two

[android-developers] How to relocate AutoCompleteTextView's dropdown window to ListView?

2011-06-08 Thread yuleib...@gmail.com
I'd like to create an AutoCompleteTextView, and make its dropdown items to be rendered in one separate ListView. This is just like Google's instant search page, which dynamically show result pages in following main area. I tried the following ways to do, but failed: 1) in inherited class of

[android-developers] Fonts on Android, how are they manage by the OS?

2011-06-08 Thread Paolo
Hi there! I need some clarifications how Android uses fonts/typefaces. Questions: 1) my app must supported a huge lists of language so I need a font, which is able to match the max possible number of characters UNICODE. Is there in Android a font like that? 2) I have noticed that on my N1 are

[android-developers] Re: Fonts on Android, how are they manage by the OS?

2011-06-08 Thread Shine
2)I guess there is no guarantee. To be certain of the font availability, considering .ttf file size, it should be better for you to include desired font inside /assets directory, and then load it with something like this: public void setFont(TextView in){ Typeface font =

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

2011-06-08 Thread Shashidhar
Follow this: http://stackoverflow.com/questions/2261914/catch-keypress-with-android On Wed, Jun 8, 2011 at 12:04 PM, Droid rod...@gmail.com wrote: I have a thread that needs specifically to be cancelled when the home button is pressed. But, nothing reliable gives me that information. (I have

[android-developers] BluetoothChat.java error

2011-06-08 Thread mark2011
Dear All : I follow the sample code and use Eclipse to code in order to test the bluetooth device, but it displays the error message at the line inport android.app.ActionBar;, Should I do anything befor? Thanks. Best Regards, Mark -- You received this message because you are subscribed to

[android-developers] Article marketing has become very popular lately

2011-06-08 Thread Ben Arroyo
I’ve been browsing a lot of time search for an article to read. I end up of one article submission http://www.articlesubmission.elementfx.com/directories sharing some good information. A lot of companies use articles to promote their product a have a great traffic to their website. Article

[android-developers] check connectivity from a widget

2011-06-08 Thread ABSOLUT
Hi, I have an application with a widget. I'm trying to check connectivity (if 3g or wifi is on) every update of the widget. I'm trying to put these code in onupdate method of the widget but it says me method getSystemService(String) is undefined. ConnectivityManager manager =

Re: [android-developers] check connectivity from a widget

2011-06-08 Thread Nikolay Elenkov
On Wed, Jun 8, 2011 at 6:11 PM, ABSOLUT davidt...@gmail.com wrote: Hi, I have an application with a widget. I'm trying to check connectivity (if 3g or wifi is on) every update of the widget. I'm trying to put these code in onupdate method of the widget but it says me method

[android-developers] Re: Android talk with NB through the BLUETOOTH device

2011-06-08 Thread gjs
Hi, Answering the following in the forum - re - listenUsingInsecureRfcommWithServiceRecord This is only supported since Android 2.3.3 Regards frommark2011 androidmark2...@gmail.com to gjs dateWed, Jun 8, 2011 at 4:07 PM subject Re: Android talk with NB through the BLUETOOTH

[android-developers] Re: Fonts on Android, how are they manage by the OS?

2011-06-08 Thread Paolo
On 8 Giu, 10:28, Shine shineange...@gmail.com wrote: 2)I guess there is no guarantee. To be certain of the font availability, considering .ttf file size, it should be better for you to include desired font inside /assets directory, and then load it with something like this: ok, but there is

[android-developers] where to start to develope a app like gtalk?

2011-06-08 Thread Hitendrasinh Gohil
Hi, I just want to know that how the gtalk works.and if we want to make a messenger app than what is the basic need for that? -- 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: App not compatable with my XOOM

2011-06-08 Thread albnok
I can install your app from web market as well as Honeycomb market from unrooted Motorola Zoom WiFi in Malaysia. On Jun 7, 8:43 am, Alchemy alchemyw...@gmail.com wrote: I am the developer for the following market apps.  For some reason, these apps are not compatible with the XOOM.   I can

Re: [android-developers] where to start to develope a app like gtalk?

2011-06-08 Thread Rocky
you should know the working strategy of gtalk, basic data flow, structure..and play with each and every component of gtalk, then create component by component and then assemble them. 1. You should know basic idea 2. basic data flow 3. basic structure 4. input 5. output and more On

[android-developers] Re: where to start to develope a app like gtalk?

2011-06-08 Thread James Ots
I'd suggest looking at http://developer.android.com/http://developer.android.com/index.html as a starting point. James -- 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: where to start to develope a app like gtalk?

2011-06-08 Thread Josh Burton
Gtalk uses a standard messaging protocol called XMPP. If its android or mobile specific you could use C2DM (cloud to device messaging) like Beluga. -- 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: Fonts on Android, how are they manage by the OS?

2011-06-08 Thread James Ots
Here are the fonts in the android source. http://android.git.kernel.org/?p=platform/frameworks/base.git;a=tree;f=data/fonts;h=b63895f0105adc2a62f648293b14aa89cc64e3f2;hb=HEAD These are listed in the makefile DroidSans.ttf DroidSans-Bold.ttf DroidSansArabic.ttf

[android-developers] Re: App not compatable with my XOOM

2011-06-08 Thread String
What do you see under Supported Devices on your Developer Console? https://market.android.com/support/developer/bin/answer.py?hl=enanswer=1286017ctx=go String -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Application modules in Android Market? How to?

2011-06-08 Thread Pedro Duque
I've noticed that some applications have modules available in Android Market (mainly themes). How can that be achieved? How do these modules link to the main application? What's the best implementation approach? Using different content providers? I would love to hear your opinion... -- You

Re: [android-developers] Re: where to start to develope a app like gtalk?

2011-06-08 Thread Hitendrasinh Gohil
Hi, if i want to use xmpp then what i need to do from serverside. -- 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

Re: [android-developers] Re: where to start to develope a app like gtalk?

2011-06-08 Thread James Ots
Here are a few links I found by using Google Search: http://xmpp.org/xmpp-software/servers/ http://xmpp.org/rfcs/rfc6120.html http://www.jabber.org/ James -- 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: Want to capture screenshot of current screen from phone

2011-06-08 Thread Bharathi raja
Same thing i wanted to do it on phone without connecting to pc. On Wed, Jun 8, 2011 at 10:47 AM, harsh chandel harshdchan...@gmail.comwrote: go to ddms select device on top you have options for getting the screen capture for device click on capture then save it wherever you want On Jun 7,

Re: [android-developers] Re: Android LifeCycle and Singleton Instances

2011-06-08 Thread Mark Murphy
On Tue, Jun 7, 2011 at 9:05 PM, gjs garyjamessi...@gmail.com wrote: I saw an interesting variation in http://www.deelin.com/downloads/books/java_concurrency_in_practice.pdf on Page 213 - :: snip :: The book is well worth reading btw. It's even better when you buy it, rather than download a

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

2011-06-08 Thread Mark Murphy
On Wed, Jun 8, 2011 at 2:34 AM, Droid rod...@gmail.com wrote: I have a thread that needs specifically to be cancelled when the home button is pressed. Rewrite your app such that you do not care about the HOME button. -- Mark Murphy (a Commons Guy) http://commonsware.com |

Re: [android-developers] Re: Want to capture screenshot of current screen from phone

2011-06-08 Thread Mark Murphy
On Wed, Jun 8, 2011 at 6:57 AM, Bharathi raja bharathiraja.andr...@gmail.com wrote: Same thing i wanted to do it on phone without connecting to pc. What you want is impossible, for security reasons. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy

Re: [android-developers] App not compatable with my XOOM

2011-06-08 Thread Mark Murphy
On Mon, Jun 6, 2011 at 8:43 PM, Alchemy alchemyw...@gmail.com wrote: I am the developer for the following market apps.  For some reason, these apps are not compatible with the XOOM. The one you linked to is. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy

[android-developers] AQuery 0.2.0 Released with AJAX and Async Image Loading

2011-06-08 Thread Peter Liu
= 0.2.0 = AQuery 0.2.0 Released with AJAX and Async Image Loading Android-Query framework just added these features: Aync Image Loading: aq.id(R.id.image1).image(http://www.vikispot.com/z/images/vikispot/ android-w.png); Doc: http://code.google.com/p/android-query/wiki/ImageLoading Ajax

Re: [android-developers] In Android, how to get the keyevent of 'home Key' ?

2011-06-08 Thread Mark Murphy
2011/6/8 Rocky rkjhaw1...@gmail.com: Hi I did some thing on blog please check that - http://alltechsolution.wordpress.com/2011/04/14/how-to-controldisable-home-button/ This is horrible code. Do not request the HOME category unless *you are a home screen*. SDK applications cannot call

Re: [android-developers] Re: In Android, how to get the keyevent of 'home Key' ?

2011-06-08 Thread Mark Murphy
On Wed, Jun 8, 2011 at 2:31 AM, Droid rod...@gmail.com wrote: I need to know when the home button is pressed too (otherwise my app returns to visibility again and again for ever). Then fix your bug. (Please don't tell me I need to design my app 'properly', I have been Android dev for over a

Re: [android-developers] Showing mathematics question in an android application

2011-06-08 Thread Mark Murphy
There are various MathML engines out there -- perhaps one works for Android. On Tue, Jun 7, 2011 at 2:33 AM, dilu madhusangita.behu...@gmail.com wrote: Hi All, I am doing an application where I need to show mathematical questions such as integration,differential,square-root,bi-nominal

Re: [android-developers] When does the platform hold wakelocks?

2011-06-08 Thread Mark Murphy
On Mon, Jun 6, 2011 at 4:47 PM, Heikki heikki.vuolteen...@gmail.com wrote: In general, I've understood that the device can go to sleep at any time when the screen is off and no application is holding a wakelock. But based on the behaviour I've seen, I believe there are a few cases when the

[android-developers] Flipping a draw 9 image horizonally..

2011-06-08 Thread Raj
Hi I am trying to rotate a draw 9 image horiontally. But all the stretching is done. Bitmap bmp = BitmapFactory.decodeResource(res,incomingColorId); Matrix matrix = new Matrix(); matrix.setScale(-1.0f, 1.0f); Bitmap

[android-developers] Flipping a draw 9 image horizonally..

2011-06-08 Thread Raj
Hi I am trying to rotate a draw 9 image horiontally. But all the stretching is done. Bitmap bmp = BitmapFactory.decodeResource(res,incomingColorId); Matrix matrix = new Matrix(); matrix.setScale(-1.0f, 1.0f); Bitmap incomingImageFlipped

Re: [android-developers] Re: In Android, how to get the keyevent of 'home Key' ?

2011-06-08 Thread Mark Murphy
On Wed, Jun 8, 2011 at 7:20 AM, Mark Murphy mmur...@commonsware.com wrote: On Wed, Jun 8, 2011 at 2:31 AM, Droid rod...@gmail.com wrote: I need to know when the home button is pressed too (otherwise my app returns to visibility again and again for ever). Then fix your bug. (Please don't

Re: [android-developers] Creating right arrow for listview

2011-06-08 Thread TreKing
On Wed, Jun 8, 2011 at 2:18 AM, mike mleon...@gmail.com wrote: I need to create a right arrow for a listview item. Is this in a class or do I have to do it manually. How would I do that? You do it manually. Insert an ImageView into the layout that you use for your ListView item.

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

2011-06-08 Thread TreKing
On Wed, Jun 8, 2011 at 1:34 AM, Droid rod...@gmail.com wrote: I have a thread that needs specifically to be cancelled when the home button is pressed. Perhaps if you explain why you think your thread needs to be specifically canceled on pressing Home you can get an answer that helps you fix

Re: [android-developers] Create Username and password

2011-06-08 Thread TreKing
On Wed, Jun 8, 2011 at 7:07 AM, cibin cibin.p.oom...@gmail.com wrote: Can anyone help me in creating username and password in an pop up window(Dialog Box). http://www.catb.org/~esr/faqs/smart-questions.html

Re: [android-developers] Flipping a draw 9 image horizonally..

2011-06-08 Thread Pepijn Van Eeckhoudt
You need to wrap the Bitmap in a NinePatchDrawable in order to get the stretching behavior. Pepijn On 08/06/2011 13:57, Raj wrote: Hi I am trying to rotate a draw 9 image horiontally. But all the stretching is done. Bitmap bmp =

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

2011-06-08 Thread Rocky
same issue i have, i want my application will run throughout in my restaurant, no one exit the apps from home button or backbutton, i disable back button, but how to disable back button, so that customer cant move away from the apps. --Rakesh On Wed, Jun 8, 2011 at 5:53 PM, TreKing

[android-developers] Create Username and password

2011-06-08 Thread cibin
Can anyone help me in creating username and password in an pop up window. Thanks in advance for any answers, Cibin -- 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] Create Username and password

2011-06-08 Thread cibin
Can anyone help me in creating username and password in an pop up window(Dialog Box). -- 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,

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

2011-06-08 Thread TreKing
On Wed, Jun 8, 2011 at 7:36 AM, Rocky rkjhaw1...@gmail.com wrote: i disable back button, but how to disable back button, so that customer cant move away from the apps. I assume you meant disable home button, and you CANNOT DISABLE THE HOME BUTTON, for very good reasons.

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

2011-06-08 Thread James Ots
I've seen this done on Windows CE devices a long time ago, by encasing the device in something which covers the buttons you don't want to user to press. I'd suggest either doing that, or installing a customized Android build on the device. James -- You received this message because you are

[android-developers] Re: Application modules in Android Market? How to?

2011-06-08 Thread Pent
I've noticed that some applications have modules available in Android Market (mainly themes). How can that be achieved? Several ways. Maybe just the resources are stored in the modules and are retrieved by the main app via package manager. Or the main app sends an intent with ACTION_CHOOSER

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

2011-06-08 Thread Rocky
yeah, i mean same, but whats the alternative way to do. On Wed, Jun 8, 2011 at 6:21 PM, TreKing treking...@gmail.com wrote: On Wed, Jun 8, 2011 at 7:36 AM, Rocky rkjhaw1...@gmail.com wrote: i disable back button, but how to disable back button, so that customer cant move away from the apps.

Re: [android-developers] Re: How do I get the MD5 fingerprint of my application certificate through code?

2011-06-08 Thread Dom
Hi mendhak, did you solve this problem? Were you able to get the MD5 Certificate Fingerprint of your app programmatically? Any directions on how to achieve this please? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

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

2011-06-08 Thread Mark Murphy
On Wed, Jun 8, 2011 at 8:36 AM, Rocky rkjhaw1...@gmail.com wrote: same issue i have, i want my application will run throughout in my restaurant, no one exit the apps from home button or backbutton, i disable back button, but how to disable back button, so that customer cant move away from the

Re: [android-developers] Re: How do I get the MD5 fingerprint of my application certificate through code?

2011-06-08 Thread gaurav gupta
Hi Dude, follow this link .. it will work http://blogspot.fluidnewmedia.com/2009/04/displaying-google-maps-in-the-android-emulator/ On Wed, Jun 8, 2011 at 6:37 PM, Dom dominicmarm...@gmail.com wrote: Hi mendhak, did you solve this problem? Were you able to get the MD5 Certificate Fingerprint

[android-developers] Error with XML parsing??

2011-06-08 Thread Duskox
Hi all, I tried looking for a solutio on web but no luck, here is the error I get, and the XML is below. I tried with and withoud the first line (? xml version=1.0 encoding=UTF-8?) but no change?? Same code I wrote works on a simpler XML file where there is only one line written. Any ideas? I saw

Re: [android-developers] Error with XML parsing??

2011-06-08 Thread TreKing
On Wed, Jun 8, 2011 at 8:22 AM, Duskox dus...@gmail.com wrote: Same code I wrote works on a simpler XML file where there is only one line written. Any ideas? Remove everything from the XML file. Then add nodes back, one by one, until you get your error again.

[android-developers] Unable to run Monkey on 2.2 tablet phone

2011-06-08 Thread Bharathiraja R
Hi All, Unable to start/run monkey on 2.2 tablet phone with below command. adb shell monkey -v -v -v 10 Got an error ** Error: Key names array malformed (internal error). Can anyone please help me out from the problem. Regards, Bharathiraja R -- You received this message because you are

Re: [android-developers] Unable to install sl4a application on 2.2 tablet phone

2011-06-08 Thread Mark Murphy
SL4a has their own Google Group: http://groups.google.com/group/android-scripting When you post, please be MUCH MORE SPECIFIC about your problem, such as providing the actual manufacturer and model number of your 2.2 tablet phone. On Wed, Jun 8, 2011 at 9:38 AM, Bharathiraja R

[android-developers] Unable to install sl4a application on 2.2 tablet phone

2011-06-08 Thread Bharathiraja R
Hi All, Unable to install sl4a application on 2.2 tablet phone. Got an failure error, Failure [INSTALL_FAILED_INVALID_APK]. Can anyone please help me out from the problem. Regards, Bharathiraja R -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: Adapting BluetoothChat Example for One Server and Multiple Clients

2011-06-08 Thread polyclefsoftware
In attempting to solve this issue, I believe I have successfully extended the official Android Bluetooth Chat example to work with a server connecting to multiple clients. I've uploaded my modifications to github here: https://github.com/polyclef/BluetoothChatMulti One device acts as the

[android-developers] Re: Error with XML parsing??

2011-06-08 Thread Duskox
Did it, nothing, no matter what I do it always shows the error, maybe it's not XML error at all?? On Jun 8, 3:28 pm, TreKing treking...@gmail.com wrote: On Wed, Jun 8, 2011 at 8:22 AM, Duskox dus...@gmail.com wrote: Same code I wrote works on a simpler XML file where there is only one line

Re: [android-developers] Re: How do I get the MD5 fingerprint of my application certificate through code?

2011-06-08 Thread Dom
Actually, I (and mendhak's original post) would like to get the MD5 fingerprint via CODE or PROGRAMMATICALLY. Getting it via the keytool is well documented in tonnes of places across the web. I would like to implement an architecture similar to google maps api. The way google maps authorizes

Re: [android-developers] Re: Error with XML parsing??

2011-06-08 Thread TreKing
On Wed, Jun 8, 2011 at 8:52 AM, Duskox dus...@gmail.com wrote: Did it, nothing, no matter what I do it always shows the error, maybe it's not XML error at all?? Maybe not - it looks fine. What gives you this error?

[android-developers] Re: Error with XML parsing??

2011-06-08 Thread Duskox
Hey, I just realized the error, my code was pointing to the wrong file which is not XML :-/ since I used final string variables to define constants in one place I used a wrong constant...huh, thank you for your help anyway!! Best regards, D. -- You received this message because you are

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

2011-06-08 Thread emaildevbr . stress
Sent from my Verizon Wireless Phone -Original message- From: TreKing treking...@gmail.com To: android-developers@googlegroups.com Sent: Wed, Jun 8, 2011 09:24:59 GMT-03:00 Subject: Re: [android-developers] How can I know when the home button has been pressed? On Wed, Jun 8, 2011 at

Re: [android-developers] Re: Adapting BluetoothChat Example for One Server and Multiple Clients

2011-06-08 Thread Kristopher Micinski
What max number of connections did you get? And how long did you maintain them? On Jun 8, 2011 9:46 AM, polyclefsoftware dja...@gmail.com wrote: In attempting to solve this issue, I believe I have successfully extended the official Android Bluetooth Chat example to work with a server connecting

[android-developers] Log of my application

2011-06-08 Thread gaara
Hi, I want to know how to get the log result of my application, the command or the directory where i could find that,Thanks. Peace, Gaara -- 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: webservice php

2011-06-08 Thread James Ots
Which part in particular are you having difficulty with? James -- 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: Log of my application

2011-06-08 Thread James Ots
http://developer.android.com/guide/developing/tools/adb.html James -- 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: Fonts on Android, how are they manage by the OS?

2011-06-08 Thread Paolo
yes those fonts are for the last platform, I guess Gingerbread that provides an extended language support. However I noticed something strange... On my Nexus S there are a lot of languages supported selectable, on the other hand on my Nexus One (always 2.3.4) there are only a subset of those. I

Re: [android-developers] Re: Log of my application

2011-06-08 Thread kamilia amellal
Thanks 2011/6/8 James Ots james...@gmail.com http://developer.android.com/guide/developing/tools/adb.html James -- 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

Re: [android-developers] Re: How do I get the MD5 fingerprint of my application certificate through code?

2011-06-08 Thread Nikolay Elenkov
On Wed, Jun 8, 2011 at 10:54 PM, Dom dominicmarm...@gmail.com wrote: Actually, I (and mendhak's original post) would like to get the MD5 fingerprint via CODE or PROGRAMMATICALLY. Getting it via the keytool is well documented in tonnes of places across the web. Simply use the MessageDigest

[android-developers] Great Problem

2011-06-08 Thread Diogo Salaberri
hi guys, I need a help please. I got this error on my app: 06-08 14:42:33.584: ERROR/AndroidRuntime(269): java.lang.RuntimeException: Unable to start activity ComponentInfo{br.com.vivo/br.com.vivo.A_Home}: java.lang.NullPointerException Anyone can help me ? Thanks -- Atenciosamente; Diogo

Re: [android-developers] Great Problem

2011-06-08 Thread TreKing
On Wed, Jun 8, 2011 at 9:48 AM, Diogo Salaberri caxix...@gmail.com wrote: Anyone can help me ? Your debugger and LogCat can. Use them to figure out what's NULL - then make it not null. - TreKing

[android-developers] webservice php

2011-06-08 Thread tamer hatoum
I have a database table named books with (ID,link,title, description) and I want to extract all the books into listview and while clicking on any item it will open the PDF file, so how can I do it using the websrvice ?? sample code will be appreciated coz I am new in it... regards.. -- You

Re: [android-developers] Great Problem

2011-06-08 Thread Diogo Salaberri
I guess that it not so simple. This erros is for 11 elements. I normally declare my elements like this: *public class A_Home extends Activity{* * * *TextView x;* * * *@Override* * public void onCreate(Bundle savedInstanceState) {* * super.onCreate(savedInstanceState);* *

Re: [android-developers] Re: How do I get the MD5 fingerprint of my application certificate through code?

2011-06-08 Thread emaildevbr . stress
3 Sent from my Verizon Wireless Phone -Original message- From: Nikolay Elenkov nikolay.elen...@gmail.com To: android-developers@googlegroups.com Sent: Wed, Jun 8, 2011 11:46:52 GMT-03:00 Subject: Re: [android-developers] Re: How do I get the MD5 fingerprint of my application

[android-developers] Re: Passing Variable in Java to XML Values

2011-06-08 Thread Streets Of Boston
You can't. The resource-manager (Activity.getResources()) read from your XML files in your *project/res/* directory and sub-directories. You can't write into them. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Re: inset a Base64.encode string into a xml

2011-06-08 Thread Raphael Posmyk
dilo.mt wrote at Dienstag, 7. Juni 2011 16:46: i tried with this : StringBuilder sb = new StringBuilder(); sb.append(image); sb.append(Base64.encode(byteArray)); sb.append(/images); but it gives me an error saying that image tag not closed, this is a part of a soap request. help me

[android-developers] Re: Error with XML parsing??

2011-06-08 Thread Streets Of Boston
:-) This is one of these 'DOH!' moments, while slapping your hand on your forehead :-) had tons of those... l;-) -- 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

Re: [android-developers] Great Problem

2011-06-08 Thread Streets Of Boston
But which line in your code throws the null-pointer-exception? We can't guess that since you haven't shown us the full stack-trace. -- 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: Adapting BluetoothChat Example for One Server and Multiple Clients

2011-06-08 Thread polyclefsoftware
I have not done extensive testing, having only connected one master and two slaves. My understanding is that the max slaves possible with bluetooth is 7 or 8. The code contains 7 unique UUIDs, so I think it should support 1 master and 6 slaves (I don't have that many Android devices). As for

Re: [android-developers] Great Problem

2011-06-08 Thread TreKing
On Wed, Jun 8, 2011 at 10:01 AM, Diogo Salaberri caxix...@gmail.com wrote: I guess that it not so simple. Sure it is - step through your debugger and print out log statements. At some point something is null. Find out what that is. I normally use that x TextView inside the onCreate() and

[android-developers] Camera preview, video streaming across phones

2011-06-08 Thread kypriakos
Hi all, Not sure if i am asking something that could be impossible to accomplish (that's why I am asking it anyway ;) ) - Currently I can remotely put the Android phone into a Picture preview, instruct it to snap a Picture and then view the picture on the remote site (through a browser). Is it

Re: [android-developers] Re: In Android, how to get the keyevent of 'home Key' ?

2011-06-08 Thread emaildevbr . stress
Sent from my Verizon Wireless Phone -Original message- From: Mark Murphy mmur...@commonsware.com To: android-developers@googlegroups.com Sent: Wed, Jun 8, 2011 08:21:34 GMT-03:00 Subject: Re: [android-developers] Re: In Android, how to get the keyevent of 'home Key' ? On Wed, Jun

Re: [android-developers] Re: How do I get the MD5 fingerprint of my application certificate through code?

2011-06-08 Thread Nikolay Elenkov
On Thu, Jun 9, 2011 at 12:21 AM, Dom dominicmarm...@gmail.com wrote: Got it, thanks! Here's the snippet of code:             Signature[] sigs = getBaseContext().getPackageManager().getPackageInfo(getPackageName(), PackageManager.GET_SIGNATURES).signatures;             for(Signature sig :

Re: [android-developers] Re: How do I get the MD5 fingerprint of my application certificate through code?

2011-06-08 Thread Dom
Got it, thanks! Here's the snippet of code: Signature[] sigs = getBaseContext().getPackageManager().getPackageInfo(getPackageName(), PackageManager.GET_SIGNATURES).signatures; for(Signature sig : sigs) { byte[] hexBytes = sig.toByteArray();

Re: [android-developers] Generating .jar from Android service project

2011-06-08 Thread emaildevbr . stress
] Sent from my Verizon Wireless Phone -Original message- From: DanielSchH dan...@schmitz-huebsch.net To: Android Developers android-developers@googlegroups.com Sent: Tue, May 31, 2011 10:28:11 GMT-03:00 Subject: [android-developers] Generating .jar from Android service project Hello,

[android-developers] Re: completion feature

2011-06-08 Thread bob
Didn't work. Eclipse says No completions available. On Jun 8, 1:46 am, Mohammed Hossain Doula hossaindo...@gmail.com wrote: Restart the eclipse... On Wed, Jun 8, 2011 at 12:44 PM, bob b...@coolgroups.com wrote: For some reason, Eclipse's word completion feature totally stopped working for

[android-developers] Re: java.lang.ArrayStoreException on Honeycomb device (Acer Iconia A500)

2011-06-08 Thread Emanuel Moecklin
Just in case someone else runs into this problem. It seems to be 3.0.1 related as I got more of those crash reports from other 3.0.1 devices (none from 3.0 devices though): Acer Iconia Asus EeePad Transformer. I changed my code to use a Vector instead so we'll see how that goes (the only solution

Re: [android-developers] Re: Fonts on Android, how are they manage by the OS?

2011-06-08 Thread Dianne Hackborn
Nexus One has a smaller partition for the system image, so can't fit every possible thing. New translations were added to the platform after the initial Nexus One release, but those new translations are not included on N1 due to the limited space. On Wed, Jun 8, 2011 at 7:41 AM, Paolo

Re: [android-developers] Re: How do I get the MD5 fingerprint of my application certificate through code?

2011-06-08 Thread Dom
Ok, cool, 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@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more

Re: [android-developers] Re: completion feature

2011-06-08 Thread Daniel Drozdzewski
restore the default options in 'Windows Preferences Java Editor Content Assist Advanced' Dan On Wed, Jun 8, 2011 at 4:42 PM, bob b...@coolgroups.com wrote: Didn't work.  Eclipse says No completions available. On Jun 8, 1:46 am, Mohammed Hossain Doula hossaindo...@gmail.com wrote:

Re: [android-developers] Re: Adapting BluetoothChat Example for One Server and Multiple Clients

2011-06-08 Thread Kristopher Micinski
On Wed, Jun 8, 2011 at 11:20 AM, polyclefsoftware dja...@gmail.com wrote: I have not done extensive testing, having only connected one master and two slaves. My understanding is that the max slaves possible with bluetooth is 7 or 8. The code contains 7 unique UUIDs, so I think it should

Re: [android-developers] Re: Adapting BluetoothChat Example for One Server and Multiple Clients

2011-06-08 Thread Kristopher Micinski
On Wed, Jun 8, 2011 at 12:29 PM, Kristopher Micinski krismicin...@gmail.com wrote: On Wed, Jun 8, 2011 at 11:20 AM, polyclefsoftware dja...@gmail.comwrote: I have not done extensive testing, having only connected one master and two slaves. My understanding is that the max slaves possible

  1   2   >