[android-developers] Re: ccc..

2012-10-04 Thread bob
*It will be something like this:* // Specify the result column projection. Return the minimum set // of columns required to satisfy your requirements. String[] result_columns = new String[] { KEY_ID, KEY_GOLD_HOARD_ACCESSIBLE_COLUMN, KEY_GOLD_HOARDED_COLUMN }; // Specify the where clause

Re: [android-developers] Re: Google account from different country

2012-10-04 Thread Latimerius
On Thu, Oct 4, 2012 at 4:26 PM, Rudolf Hornig rudolf.hor...@gmail.com wrote: It will work. I'm using a Austrian bank account and my company is based in Hungary. Just out of curiosity, how do you handle taxes under that arrangement? Specifically, do you pay any Austrian taxes, or deal with

[android-developers] Re: android based robot

2012-10-04 Thread bob
You may want to buy a Lego Mindstorms kit that has electric motors. Also, you may want to look up servo motors. I would think you can send Bluetooth signals to a motor. Also, you may want to visit a Brookstone store to see the state of the art in this domain (i.e. RC cars controlled by

Re: [android-developers] TextureView canvas drawing problems

2012-10-04 Thread Conrad Chapman
Thank you so much Romain for your reply and example. I might be the only real canvas textureview example on the net. It worked but not quite as you said. It might be something to do with my class structure as this part of the program does not have internal classes.. I will explain and show a

Re: [android-developers] TextureView Canvas

2012-10-04 Thread Conrad Chapman
As it happens our friend Romain Guy did have some ideas https://groups.google.com/forum/?fromgroups=#!topic/android-developers/_Ogjc8sozpA thank you On Wednesday, 3 October 2012 11:34:58 UTC+2, Conrad Chapman wrote: I have a similar problem but I was using SurfaceView properly as you mention

Re: [android-developers] Exclude dependencies from apk?

2012-10-04 Thread Lindley
I'm aware of the security concerns. Anyway, I've gotten it working in Eclipse by removing the project dependency under Reference on the Android tab of the project properties, and just setting that the project is required in the Java Build Path tab (not exported). However, even though Eclipse

Re: [android-developers] Consume POJO based web services

2012-10-04 Thread Kristopher Micinski
Well, those are using Axis2, which I think you can get to work on Android... But the question doesn't deal specifically with anything Android related, kris On Thu, Oct 4, 2012 at 5:17 AM, giles ian gilesian@gmail.com wrote: So you are trying to say that the java clients (1,2) which

Re: [android-developers] Exclude dependencies from apk?

2012-10-04 Thread Kristopher Micinski
You'll have to tell us more about your build process. Generally I simply stick them in libs/ or do something more elaborate with custom rules. I'm honestly not seeing what your problem is, and still not seeing why you need a class loader, in my experience if you can do things statically it's

[android-developers] Android activations per day and App sales numbers

2012-10-04 Thread niko20
The latest Google numbers on activations per day says over 1 million! Per day! But I am not seeing those numbers reflected in my app sales at all. I pretty much always sell the same amount, every single day. The same amount for the last year and a half. Now, that might be a gift horse, that

Re: [android-developers] In-App Billing Example (Dungeons) does not increment purchases.

2012-10-04 Thread Kostya Vasilyev
You will probably want to implement your own purchase tracking mechanism, for security / obfuscation if nothing else. -- K 2012/10/4 Escape Radius i...@escaperadius.com I've successfully tested the in-app billing example, Dungeons, and have observed an apparent error in its implementation (or

Re: [android-developers] Exclude dependencies from apk?

2012-10-04 Thread Lindley
It's kind of complicated and there are inter-team political considerations. This seems to be the cleanest solution we've hit upon so far. Whether or not it's the right solution in the long run we don't know yet, but that isn't what I'm asking about. I just want help with the mechanics of the

Re: [android-developers] Consume POJO based web services

2012-10-04 Thread TreKing
On Thu, Oct 4, 2012 at 4:17 AM, giles ian gilesian@gmail.com wrote: So you are trying to say that the java clients (1http://www.j2mesalsa.com/axis/pojoclient.php ,2http://axis.apache.org/axis2/java/core/docs/pojoguide.html#testingpojows) which consumes those web services will run fine on

Re: [android-developers] Nested Linear Layouts

2012-10-04 Thread TreKing
On Thu, Oct 4, 2012 at 5:36 AM, Darryl Griffiths daz1...@gmail.com wrote: I have attached a picture of the video tutorial demonstrating what has been done. That looks like the outer Linear Layout is horizontal, not vertical. I have been trying all sorts, but I cannot get my version to

Re: [android-developers] Android activations per day and App sales numbers

2012-10-04 Thread TreKing
On Thu, Oct 4, 2012 at 10:50 AM, niko20 nikolatesl...@yahoo.com wrote: Anyone else have similar experience / thoughts? Same experience. I'll also note that for me the number of sales remained about the same even after a price increase.

[android-developers] abstract Uri?

2012-10-04 Thread bob
Can someone help me understand why the android.net.Uri class is abstract? Naturally, I want to do something like this: Uri uri = new Uri(http://www.example.com/file.mp4;); -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: Using NFC on Android

2012-10-04 Thread William Chan
Thank you very much everyone who has replied. I am grateful for your time spent answering. I'm not sure how I can reply to everyone so I'm going to do so here. It looks like 9 is the base API for NFC. I think I will develop the app in API 10 as it probably has the basics of NFC tried and

[android-developers] Re: abstract Uri?

2012-10-04 Thread RichardC
Did you look at Uri.Builder? http://developer.android.com/reference/android/net/Uri.Builder.html On Thursday, October 4, 2012 6:59:02 PM UTC+1, bob wrote: Can someone help me understand why the android.net.Uri class is abstract? Naturally, I want to do something like this: Uri uri = new

[android-developers] Re: abstract Uri?

2012-10-04 Thread RichardC
and also this method: http://developer.android.com/reference/android/net/Uri.html#parse(java.lang.String) On Thursday, October 4, 2012 6:59:02 PM UTC+1, bob wrote: Can someone help me understand why the android.net.Uri class is abstract? Naturally, I want to do something like this: Uri uri

[android-developers] Multi-Language Support for Android Softkeyboard

2012-10-04 Thread jason austin
Currently, I am developing a softkeyboard for Android using SoftKeyboard source code which is available in the SDK. But I want to add in multi-language support for the keyboard (similar to what is available in the native keyboard). But this portion is not available in the SoftKeyboard

Re: [android-developers] Re: On screen orientation changes activity restarted.

2012-10-04 Thread nihal
i have a similar problem too. And i find my answer in http://stackoverflow.com/questions/10906395/android-manifest-configchangesscreensize-is-not-available Maybe this is the solution of your problem too. -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: SDK Manager doesn't show anything, only already installed packages

2012-10-04 Thread Kurt Kincaid
Exactly the same situation here. Any thoughts or suggestions would be greatly appreciated. On Tuesday, August 14, 2012 3:43:18 AM UTC-5, Andre wrote: Hi everyone, since yesterday the SDK Manager doesn't show any updates or packages other than what I have already installed. I looked

[android-developers] Re: Google Cloud Messaging client not receiving responses from server

2012-10-04 Thread Tobi
Am Mittwoch, 11. Juli 2012 13:23:50 UTC+2 schrieb Valdomero: Hi everyone, Using the GCM demo project I managed to registrer a few devices (in the web site, running in a Tomcat server, I can see them listed) but when I click on the Send Message button nothing happens on the client side,

[android-developers] High Memory Usage in Gingerbread

2012-10-04 Thread Cameron Lowell Palmer
Our app provides realtime streaming market data and users are seeing alarmingly large memory usage in the Task Manager. While I have tried to explain to the product owners is that the number is more complicated than the seemingly easy to understand 230MB displayed by Task Manager. I am

[android-developers] Is there any way to set up my app home by default?

2012-10-04 Thread Christian Chavez Pérez
Hi guys, im new developer in Android and i would like to know if is possible to set up my custom application to launcher by default -- 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] Location of saved web pages, Jelly Bean 4.1.1?

2012-10-04 Thread John Kwiatkowski
Stock browser on ASUS tf700. Can't find the location of saved web pages (webarchivexml) in Jelly Bean. Where are they? Has the format changed? In ICS they would show up under Downloads. Thanks. -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Connecting a OTG enabled phone to a USB device that is not handled by the OS (i.e. not a keyboard, mouse or mass storage device) -

2012-10-04 Thread Eduardo Alperin
I created a small USB device and expected the Android phone to provide some kind of feedback when the device is connected and there is no app that receives the intent that is created. The following facts were noticed: (b) Even if a new devices connection appears in the logs Android doesn't

Re: [android-developers] Is there any way to set up my app home by default?

2012-10-04 Thread Mark Murphy
The user can do this, but you cannot through an ordinary SDK app. The only way you can force your app to be the default home screen is to distribute it as such in your own ROM mod. On Thu, Oct 4, 2012 at 4:11 AM, Christian Chavez Pérez christian.mald...@gmail.com wrote: Hi guys, im new developer

Re: [android-developers] Re: Google Cloud Messaging client not receiving responses from server

2012-10-04 Thread Mark Murphy
Please consider using the android-gcm Google Group for GCM-related support. On Thu, Oct 4, 2012 at 9:58 AM, Tobi brunner.fu...@freenet.de wrote: Am Mittwoch, 11. Juli 2012 13:23:50 UTC+2 schrieb Valdomero: Hi everyone, Using the GCM demo project I managed to registrer a few devices (in the

Re: [android-developers] Re: SecurityException: Given caller package com.android.settings is not running in process ProcessRecord

2012-10-04 Thread Charan
whats the alternatives for this now in ICS ? On Thursday, 17 May 2012 21:06:44 UTC+5:30, Mark Murphy (a Commons Guy) wrote: On Thu, May 17, 2012 at 11:30 AM, minil...@gmail.com javascript: wrote: But I can do this on Android 2.3.3 Not really. It *looks* like it is there, but if you

[android-developers] How can I call WCF webservices with WS-security using client x509 certificate

2012-10-04 Thread sumit gulati
How can I consume the WCF webservices(hosted on http protocol) having ws- message security from the android application using KSOAP or any other library. I have implemented the same fro REST webservices. I have to customize the both trust manager(certificate file with X509 certificate) and key

[android-developers] Bluetooth Low Energy Support in API 16?

2012-10-04 Thread Zafar Alam
Heard that API 16 is going to support BLE, So is there any information regarding when BLE API will be officially supported in the SDK? -- 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] Checking if 5ghz wifi is available

2012-10-04 Thread Reductio Ad Absurdum
Hi all, i'm desperatly searching for a method to figure out if a device running my app can actually use the 5Ghz wifi band. Does anyone know how to do that? Thanks! -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Flash Payer

2012-10-04 Thread Berthier philippe
Impossible d'installer flash player sur ASUS TF700T avec android 4.3 Refus systématique avec message depuis .. adobe n'assure plus.. Une solution la moitè de mes applis ne fonctionnent plus Merci -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] ASDK Manager Problems

2012-10-04 Thread Steffen Hermann
Hi guys, yesterday i downloaded the java jdk 7u7 and the android sdk. After some problems to install ASDK i'm now stucked to get any API or other package with the ASDK Manager. Log tells me everything was successfully and done on first startup but it doesn't show anything. I even tryed once

[android-developers] How to get all transaction information for purchase?

2012-10-04 Thread Nga Nguyen Thien
Hello, i have a question help me, please! i'm searching in-app billing and i know used NOTIFY_ID to get current transaction information. I created new Android project, i want manage purchase. i want get all transaction information (in week or month) in my app. How do i do that? what is method

[android-developers] Re: Mutual authentication using X.509 certificate

2012-10-04 Thread sumit gulati
If you have done please provide me the code or reference. I have to implement the same. On Wednesday, February 29, 2012 11:45:47 AM UTC+5:30, Pankaj wrote: I want to consume WCF web-service which uses X.509 certificate for mutual authentication. I had imported certificates using keytools in

[android-developers] XMLPullParser feature not available

2012-10-04 Thread Xavier Gouchet
I'm using an XMLPullParser to read xml files, and I create it using the following lines : XmlPullParserFactory factory; XmlPullParser xpp; factory = XmlPullParserFactory.newInstance(); factory.setNamespaceAware(true); factory.setFeature(XmlPullParser.FEATURE_PROCESS_DOCDECL, true);

[android-developers] Re: Gallery with Zoom Application needed

2012-10-04 Thread Zafar Alam
you mean pinch zoom in and out on selecting a picture. On Thursday, October 4, 2012 10:58:11 AM UTC+5:30, vamshi ch wrote: Hi All, I created simple Gallery App, But i need Zoom in/out by hand touch not with zoom controller. if you have any idea or have code pls share me code

[android-developers] phonegap - problem deploying project to phone

2012-10-04 Thread steffen waldmann
Hi there, i'm very new in android development and i am currently writing my first app. i use current version of phonegap (cordova 1.7.0) and write the app in html with jquery/jqery mobile (1.1.1). my phone is a motorala defy+ with cm9 white rabbit installed. so far the app works fine in an AVD

[android-developers] [GooglePlay] Google criteria for New Games and Applications

2012-10-04 Thread Giselle Cantador
Hi Guys Does anyone know what criteria google uses or what to do, for one recently launched game to appear in the New Games and Applications on Google Play? Thanks Giselle -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Re: Parent activity runs onCreate before onActivityResult is called (sometimes)!

2012-10-04 Thread Yuval Barness
Interestingvery interesting. I just programmed an application that does this routine, and I didn't realize why the Parent activity has been destroyed before it went to onActivitityResult() after lots of hours trying to bug it, and using all launchMode=.. that makes logic, I couldn't find a

[android-developers] as a point of interest, spinners and widgets

2012-10-04 Thread To Wo
why is it that the spinner onItemSelect listener and such created and defined in the java code, whereas say button listeners are created in the XML? -- 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: javascript in webview on android 2.3 fires only once

2012-10-04 Thread raywin
Facing same issue with android 2.2 Anyone have any solution? -- 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] is there any api to clone the behavior of Android Market application? is it even possible?

2012-10-04 Thread Hadi Tavakoli
I first posted this question on stackoverflow but then thought maybe I'd get better answers here! Anyway, using the Android market app, or better to say, the Google Play app in your device, you can search the market and with one click you will download and install the app you want! I'm

[android-developers] Passing pending intent to an activity

2012-10-04 Thread Lucky
Hi all, I am working an activity (AlertDialogActivity) that shows custom alert messages. This activity has a Ok button which when clicked should start another activity. The activity that should start when Ok button is clicked is not fixed and should be passed to the AlertDialogActivity.

Re: [android-developers] NEED HELP FOR INSTALL THE PLUGIN ADT ON ECLIPS

2012-10-04 Thread Mark Murphy
That is the repository for Eclipse Indigo. It is not the repository for the ADT plugin. See: http://developer.android.com/sdk/installing/installing-adt.html On Thu, Oct 4, 2012 at 5:20 AM, AWAKA17 awak...@gmail.com wrote: I HAVE A PROBKEM WHEN I TRY TO INSTALL THE ADT PLUGIN IN THE ECLIPS I

Re: [android-developers] Re: SDK Manager doesn't show anything, only already installed packages

2012-10-04 Thread Mark Murphy
Clear your cache and reload. The clear-cache button is in Tools Options in the SDK Manager, and reloading is Packages Reload in the SDK Manager. On Thu, Oct 4, 2012 at 9:09 AM, Kurt Kincaid kurt.kinc...@gmail.com wrote: Exactly the same situation here. Any thoughts or suggestions would be

[android-developers] Re: abstract Uri?

2012-10-04 Thread Lew
bob wrote: Can someone help me understand why the android.net.Uri class is abstract? You got the what, now for the why. Naturally, I want to do something like this: I question the naturalness of that desire. Uri uri = new Uri(http://www.example.com/file.mp4;); It's more natural,

Re: [android-developers] Re: SecurityException: Given caller package com.android.settings is not running in process ProcessRecord

2012-10-04 Thread Mark Murphy
On Thu, Oct 4, 2012 at 5:46 AM, Charan paichara...@gmail.com wrote: whats the alternatives for this now in ICS ? You failed to provide an adequate definition of this. Assuming this is embedding another app's activity in your own app, that is still not supported. -- Mark Murphy (a Commons Guy)

[android-developers] Re: I had android doubt please go to link and give your suggestions.

2012-10-04 Thread Lew
SIVAKUMAR.J wrote: I had android doubt please go2 link and give ur ideas http://stackoverflow.com/q/12723139/385138 The last time you asked a question this way, in this very thread (which is another error), Steve wrote: I understand you are sincerely looking for help, and I'm sure it's

Re: [android-developers] Any pointers?

2012-10-04 Thread Lew
Amit wrote: Can you please share the whole project ? That might be overkill. Let's see at least the XML files. Brian wrote: Hi guys and gals! I would appreciate any pointers as to what I'm doing wrong. I'm learning Android development and am a newbie. I'm doing the online

[android-developers] breakpoint in onReceive

2012-10-04 Thread bob
So, can you not put a breakpoint in a broadcast receiver? I tried to put a breakpoint in onReceive to see if it got called, and it never triggered. IntentFilter filter = new IntentFilter( DownloadManager.ACTION_DOWNLOAD_COMPLETE); BroadcastReceiver receiver = new BroadcastReceiver() {

Re: [android-developers] Checking if 5ghz wifi is available

2012-10-04 Thread Irfan Sheriff
On Wed, Oct 3, 2012 at 8:11 AM, Reductio Ad Absurdum timmj...@gmail.comwrote: Hi all, i'm desperatly searching for a method to figure out if a device running my app can actually use the 5Ghz wifi band. There is no API. Why would you want this in an app ? Does anyone know how to do that?

Re: [android-developers] breakpoint in onReceive

2012-10-04 Thread Harri Smått
On Oct 4, 2012, at 11:16 PM, bob b...@coolfone.comze.com wrote: So, can you not put a breakpoint in a broadcast receiver? Maybe someone corrects me but it's quite often the case a breakpoint does not work unless you have some code there. E.g adding something gibberish; int i = 0; ++i; And

[android-developers] Re: abstract Uri?

2012-10-04 Thread bob
Looks like the answer can be understood partly by looking at these functions: 425 public static Uri parse(String uriString) { 426 return new StringUri(uriString); 427 } 439 public static Uri fromFile(File file) { 440 if (file == null) { 441 throw

[android-developers] Re: Google has received a subpoena seeking information related to Android applications

2012-10-04 Thread Tim in Boulder
On Tuesday, October 2, 2012 2:54:30 PM UTC-6, Ian wrote: Did those who received this email ever made DMCA copyright infringement notices to websites hosting/linking their apps illegaly? I did, several times. And now we've got this email; it may be related. I've sent DMCA notices, and I got

Re: [android-developers] Re: getting this error The apk must be signed with the same certificates as the previous version.

2012-10-04 Thread Cyrille Paulhiac
Unfortunately not, because I was compiling my apk with Unity, and used an internal manager of keystore (and not knowing anything about jarsigner). So I unpublish my game and re-publish a new one, with a totaly new keystore and key. It works. I created a thread on Unity forums to alert them of

Re: [android-developers] Re: Google has received a subpoena seeking information related to Android applications

2012-10-04 Thread Ian Thecleric
On Thursday, October 4, 2012, Tim in Boulder wrote: On Tuesday, October 2, 2012 2:54:30 PM UTC-6, Ian wrote: Did those who received this email ever made DMCA copyright infringement notices to websites hosting/linking their apps illegaly? I did, several times. And now we've got this email; it

Re: [android-developers] breakpoint in onReceive

2012-10-04 Thread TreKing
On Thu, Oct 4, 2012 at 3:34 PM, Harri Smått har...@gmail.com wrote: Maybe someone corrects me but it's quite often the case a breakpoint does not work unless you have some code there. E.g adding something gibberish; That's unnecessary, the break point will (or at least should) trigger on the

Re: [android-developers] as a point of interest, spinners and widgets

2012-10-04 Thread TreKing
On Tue, Oct 2, 2012 at 2:59 AM, To Wo themartini...@hotmail.com wrote: why is it that the spinner onItemSelect listener and such created and defined in the java code, whereas say button listeners are created in the XML? Buttons are far more common and the ability to add a listener in XML is

Re: [android-developers] Passing pending intent to an activity

2012-10-04 Thread TreKing
On Wed, Oct 3, 2012 at 5:52 PM, Lucky varsheet.sha...@gmail.com wrote: The activity that should start when Ok button is clicked is not fixed and should be passed to the AlertDialogActivity. What do you mean is not fixed? What should be passed to your AlertDialogActivity? Regardless, I think

Re: [android-developers] is there any api to clone the behavior of Android Market application? is it even possible?

2012-10-04 Thread TreKing
On Wed, Oct 3, 2012 at 7:47 AM, Hadi Tavakoli tahadaf.excha...@gmail.comwrote: maybe somehow connect to the current Google Play app installed on users devices and use it for the download and the installation process? AppBrain manages to do this, but it's an exploit. There's no official way of

Re: [android-developers] breakpoint in onReceive

2012-10-04 Thread bob
Ok, I goofed up. The HTTP server I was running (and downloading from) was on a different network. This is why the download never completed. On Thursday, October 4, 2012 4:46:40 PM UTC-5, TreKing wrote: On Thu, Oct 4, 2012 at 3:34 PM, Harri Smått har...@gmail.comjavascript: wrote:

Re: [android-developers] Re: Google has received a subpoena seeking information related to Android applications

2012-10-04 Thread Kostya Vasilyev
FWIW: I got one of those messages too, and only sent a DMCA notice once, to Google, not some other site (a long time ago, perhaps close to two years). -- K 2012/10/5 Ian Thecleric ianthecle...@gmail.com On Thursday, October 4, 2012, Tim in Boulder wrote: On Tuesday, October 2, 2012 2:54:30

Re: [android-developers] Connecting a OTG enabled phone to a USB device that is not handled by the OS (i.e. not a keyboard, mouse or mass storage device) -

2012-10-04 Thread Tux Leonard
I am using a USB to Serial adapter on my Samsung Nexus phone (Jelly Bean) and it works fine. I use the Slick USB 2 Serial Terminal application and the device gets detected and works. At the moment I write my own example to send and recive messages over RS232 but it's just at the beginning. Up to

Re: [android-developers] Accessing a database hosted on a server

2012-10-04 Thread Indicator Veritatis
Your reply, TreKing, reminds me of the classic joke: you ask a programmer if he knows what time it is, and he says 'yes';) But a little more of a hint would have been quite appropriate. I take an especial interest in this because if I had been the one designing the Android database API, I like

Re: [android-developers] Unable to register CONNECTIVITY_ACTION in a service

2012-10-04 Thread Robert Greenwalt
You are registering in your constructor. I think you need to register in onCreate. You appear to not have a context when your constructor is called. On Wed, Oct 3, 2012 at 9:17 PM, Subodh Nijsure subodh.nijs...@gmail.comwrote: Hello Robert, Below is the stack trace that I see when system

[android-developers] Re: Google account from different country

2012-10-04 Thread Zsolt Vasvari
No, you cannot change the country of an account, but you can set up a new account with a new country and transfer all your apps there. You will need to submit a request to Google, but in my case, they transferred my apps in literally 10 minutes after submitting the request. I could not

Re: [android-developers] Re: Google account from different country

2012-10-04 Thread Zsolt Vasvari
In all countries, with the notable exception of the US, you pay taxes where you earn them. If you are a US national/PR, the US government expect you pay US taxes no matter where you earned the money. The first $X is a foreign tax credit which means you don't pay double taxes on the first $X

Re: [android-developers] Re: What is the best phone to buy for Android Development?

2012-10-04 Thread Indicator Veritatis
It is true, but misleading that the emulator may work for most cases. Unless you are doing a very simple app, you should not even think of uploading it to the market until you have tested it on a real phone, preferably unrooted, since that is what most users will use. It is imperative if you

[android-developers] Re: What is the best phone to buy for Android Development?

2012-10-04 Thread Indicator Veritatis
Everything you cay about command line vs. Eclipse window could be true yet there would still be one overwhelming advantage for the command line: the Eclipse UI and documentation for how to do all this filtering is limited and put in odd places; it is much easier to find out how to use

Re: [android-developers] Code for sending data through usb from android tablet

2012-10-04 Thread Tux Leonard
This would be a good starting point: http://developer.android.com/guide/topics/connectivity/usb/index.html 2012/9/25 Rohit Jadhav rohit4...@gmail.com anyone..who can tell me that how to send data from android tablet through USB cable.. -- You received this message because you are

Re: [android-developers] Communication USB with electronic card

2012-10-04 Thread Tux Leonard
Perhaps you enabled hardware handshake on your serial line. (Flow control: http://en.wikipedia.org/wiki/Serial_port#Flow_control). So the hyperterminal responds on that handshake and the transmission starts. You should disable FlowControl in your application. Roy 2012/9/24 Christian Cadon

[android-developers] Re: abstract Uri?

2012-10-04 Thread Indicator Veritatis
You question the 'naturalness' of his desire to use 'new', but you don't seem to notice: you have merely moved the question, not answered it. Of course it is 'unnatural' to call 'new' on an abstract class, but he was asking why it was made abstract in the first place. You did not address this.

[android-developers] Re: HTTP server in Android

2012-10-04 Thread gjs
Hi, Change the port number in your request - PORT = 8765 not 8080 And yes you can write your own http server simply by using a server socket. http://docs.oracle.com/javase/tutorial/networking/sockets/clientServer.html Regards On Thursday, October 4, 2012 3:57:58 PM UTC+10, Archana wrote:

Re: [android-developers] video uploaded from galaxy tab not playing

2012-10-04 Thread mohana priya
Thanks for your reply.Its playing in vlc media player,but not in strobe media player.But i captured video from other mobile devices, and its playing well in strobe media player.Please guide me. On Thursday, October 4, 2012 6:55:32 PM UTC+5:30, Lokesh wrote: Did u try running it with some

<    1   2