Re: [android-developers] Re: Write storage on Samsung Galaxy Tab 7.7

2012-04-14 Thread Zsolt Vasvari
It appears that no one on this forum has more insight into number 2. Darn. If Dianne hasn't chimed in, there is probably not much hope that you will get an answer. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] TCP Connection - Service design question

2012-04-14 Thread Federico Paolinelli
Hi all, I am developing a simple multiplayer game. To make the things easy, given that every session is supposed to be quite fast, if a player gets disconnected all the other players are notified of her disconnection and the game goes on (no reconnection for the disconnected player). The

[android-developers] Do we need to have 64 bits OS to run Android CTS and Monkey test for Android ICS version ?

2012-04-14 Thread droigons
Dear Experts: I would like to know if I run Android CTS for ICS or higher , do I need to upgrade my test machine to 64 bit ? Also, do you have instruction how to instruction of how to set up a CTS. Thanks , -- You received this message because you are subscribed to the Google Groups

[android-developers] Does android-sdk_r18-linux.tgz/ADT 18.0.0 work on linux 64bits ?????????

2012-04-14 Thread zousey
I have used more then a week to make android-sdk_r18-linux.tgz/ADT 18.0.0 work on ubuntu11.10 without a success. The description of the problem I have installed freshed ADT 18.0.0 and SDK Tools, r18 on Eclipse :Version: Indigo Service Release 2 Build id: 20120216-1857 on ubuntu 11.10 64bits. but

[android-developers] the focused activity is able to receive the simulated Key/touch tap Msg ?

2012-04-14 Thread Xie Daniel
Hey , I am trying to investigate the simulation of key/touch tap and sending to ther application . After some navigation on internet , I get to know that sending these msg seems impossible. and also , I am told that key/touch tap msg is destinated to the focused activity... So my question

[android-developers] Re: the focused activity is able to receive the simulated Key/touch tap Msg ?

2012-04-14 Thread Xie Daniel
Also , as for dispatchKeyEvent , my understanding is that it only intercepts all Keys EVENT to the process where dispatchKeyEvent is invoked,instead of system-wide Key Events ... please help to verify my statement. Thanks ... On Sat, Apr 14, 2012 at 5:11 PM, Xie Daniel jasic2...@gmail.com wrote:

[android-developers] Re: How to integrate Google maps and Facebook page and Twitter in android apps.

2012-04-14 Thread Ali Chousein
Facebook integration: https://developers.facebook.com/docs/reference/api/ Twitter integration: https://dev.twitter.com/ Google maps integration: http://code.google.com/android/add-ons/google-apis/ If any one of them have source code or any reference please share with me. Are you willing to

[android-developers] Search a contact using phone number

2012-04-14 Thread Atif Farrukh
I would like to retrieve the name of the contact associated with an incoming message number. I came up with the following code. Uri lookupUri = Uri.withAppendedPath(PhoneLookup.CONTENT_FILTER_URI, Uri.encode(msgSender)); Cursor c = getContentResolver().query(lookupUri, new

Re: [android-developers] Does android-sdk_r18-linux.tgz/ADT 18.0.0 work on linux 64bits ?????????

2012-04-14 Thread Kostya Vasilyev
It does. FWIW, my setup is Debian Wheezy, Oracle Java, Eclipse 3.7.1, everything 64 bit. I updated tools yesterday and they continune to work so far. ADT 17 changed how ProGuard is configured: http://tools.android.com/recent/proguardimprovements It's possible that the Android / C2DM plugin has

Re: [android-developers] Search a contact using phone number

2012-04-14 Thread Justin Anderson
The problem is, its working on emulator but not working on my mobile device What exactly do you mean by not working? Is it crashing? Are you getting an exception? Does your mobile device catch on fire? Does the code cause your lights to turn on and off? Thanks, Justin Anderson MagouyaWare

Re: [android-developers] Search a contact using phone number

2012-04-14 Thread Atif Farrukh
I mean to say, on emulator I am able to get the contact name. But on on my phone I am not able to get the contacts name. before this code I did this: String displayName = ? after looking for contact name I did:

[android-developers] Re: WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH and 4.0+ touch events not captured

2012-04-14 Thread lbendlin
Kudos for finding such an ingenious way of doing that. Unfortunately it was never intended to work. Check the documentation. On Apr 13, 7:38 pm, Bsweet tony.sa...@gmail.com wrote: I have a service that I allow other applications to bind to remotely. During key events that they record to my

[android-developers] Re: Does android-sdk_r18-linux.tgz/ADT 18.0.0 work on linux 64bits ?????????

2012-04-14 Thread zousey
To be specific. I have no problem of creating Android project. only I can create Android project that works fine, the problem arised when I try to create App Engine Connected Android project. then I get the error that proguard.cfg is missing. On Apr 14, 10:20 am, zousey luc...@gmail.com wrote: I

Re: [android-developers] Re: Does android-sdk_r18-linux.tgz/ADT 18.0.0 work on linux 64bits ?????????

2012-04-14 Thread Kostya Vasilyev
Yes, I already realize that. Thank you. 14 апреля 2012 г. 19:34 пользователь zousey luc...@gmail.com написал: To be specific. I have no problem of creating Android project. only I can create Android project that works fine, the problem arised when I try to create App Engine Connected Android

Re: [android-developers] Search a contact using phone number

2012-04-14 Thread Justin Anderson
I mean to say, on emulator I am able to get the contact name. But on on my phone I am not able to get the contacts name. before this code I did this: String displayName = ? after looking for contact name I did: msgDialog.setTitle(From : +

[android-developers] Hello Everyone---a Quick question please

2012-04-14 Thread Soyer
Hello everybody, i am trying to split a line to a set of strings, and i am using the following bunch of code: str = hello welcome to your application text= X, A String t1[]=str.split( ); String t2[]=text.split( ); the problem is

[android-developers] Android Dex is giving a message when try to import a external library

2012-04-14 Thread rafuru
This is a recently problem with the new SDK for Android. Now Android SDK uses the ANT convention when import external jars to the apk package, the external jars must be on the lib folder and the SDK ever will export the jars from that folder. My problem is when i add my jars and run my

[android-developers] forcing slidingDrawer content always in landscape mode

2012-04-14 Thread charlie babitt
Hallo! My activity contains a Slidingdrawer. How is it possible that the content of the sliding drawer is always in landscape mode, even if the phone is in portrait mode? This means that when the sliding drawer is open the orientation switches to landscape, no matter what the orientation of the

Re: [android-developers] Hello Everyone---a Quick question please

2012-04-14 Thread Justin Anderson
This isn't an android question... This is more of a really beginner java question. That being said, what are you doing to print out the strings? http://docs.oracle.com/javase/1.4.2/docs/api/java/lang/String.html#split%28java.lang.String%29 Thanks, Justin Anderson MagouyaWare Developer

[android-developers] Re: Demo/Full Game options on Google Play

2012-04-14 Thread H
The best way at the moment to beat the crackers it to use native code to do things like checking the signature matches an expected hash. You have to do other fancy stuff like encrypting some of that to further hide the logic. But don't be under any illusion - native code is tougher than java and

[android-developers] Re: forcing slidingDrawer content always in landscape mode

2012-04-14 Thread lbendlin
simply counter-rotate your sliding drawer when you handle the rotation to portrait. On Saturday, April 14, 2012 5:54:31 PM UTC-4, charlie babitt wrote: Hallo! My activity contains a Slidingdrawer. How is it possible that the content of the sliding drawer is always in landscape mode, even

[android-developers] android two devices connected by USB

2012-04-14 Thread Jairo
I can send and receive information from one device to another by usb. android two devices connected by USB. eg send commands -- 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] Program crashes on Android 4.0.4 but not on 2.3.3

2012-04-14 Thread James Black
Hello, I am trying to understand what may be happening in my program. I don't get any indication as to why it is crashing, but the basic flow is: First activity starts user selects to see map Remote Service starts up Almost immediately after binding to and calling onStart on the service the

Re: [android-developers] Program crashes on Android 4.0.4 but not on 2.3.3

2012-04-14 Thread TreKing
On Sat, Apr 14, 2012 at 11:06 PM, James Black planiturth...@gmail.comwrote: Almost immediately after binding to and calling onStart on the service the mapview activity dies. Can you elaborate on dies?