[android-developers] ASUS tablet

2013-09-26 Thread eli
I am using Eclipse and am able to communicate with a XOOM tablet for USB debugging. However if I use an ASUS tablet Windows XP does not see it if I have the USB debugging option selected. Has anybody solved this problem. -- You received this message because you are subscribed to the Google Gr

[android-developers] Re: USB Enumeration

2013-09-23 Thread eli
Just want to add that I am using an OTG cable. On Monday, September 23, 2013 9:36:20 AM UTC-4, eli wrote: > Can Android enumerate a USB Plug-and-Play device. The standard > enumeration using the API does not seem to work. > Does anyone have an example. Thanks. > > -- Yo

[android-developers] USB Enumeration

2013-09-23 Thread eli
Can Android enumerate a USB Plug-and-Play device. The standard enumeration using the API does not seem to work. Does anyone have an example. Thanks. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to and

[android-developers] Re: Android USB problems

2013-09-20 Thread eli
How do I get an app to read data from a USB barcode reader if the usbManager can't even detect that its there. On Thursday, September 19, 2013 3:55:19 PM UTC-4, eli wrote: ><http://stackoverflow.com/questions/18900666/android-usb-problems#> > ** > > I have a tab

[android-developers] Android USB problems

2013-09-19 Thread eli
** I have a tablet, an OTG cable and a barcode reader. I know this works because when I start the Google app I can scan barcodes and see them on the screen. I created a very simple application that starts the USB manager

Re: [android-developers] Re: ContentResolver insert return null on 4.3

2013-08-04 Thread Eli Hasson
Hi Kostya, You are correct that its not the best practice, but till now it was the easiest way to get the content URI from a file URL, and was commonly used. Also till 4.3 it worked, so I didn't pay it too much attention. Eli -- -- You received this message because you are subscribed t

Re: [android-developers] Re: ContentResolver insert return null on 4.3

2013-08-04 Thread Eli Hasson
The solution for this issue is to query the Database, instead of insert to it, I posted the full solution with code to this issue in my blog: http://androidwarzone.blogspot.co.il/2013/08/media-play-and-share-to-youtube-breaks.html Eli On Fri, Aug 2, 2013 at 11:20 PM, Eli Hasson wrote: >

Re: [android-developers] Re: ContentResolver insert return null on 4.3

2013-08-02 Thread Eli Hasson
. Eli On Fri, Aug 2, 2013 at 11:02 PM, Nobu Games wrote: > Is there anything in log cat related to MediaStore? > > > On Friday, August 2, 2013 2:43:17 PM UTC-5, eli wrote: > >> Thanks for your answer, I just entered hard coded values there to make >> the code more c

Re: [android-developers] Re: ContentResolver insert return null on 4.3

2013-08-02 Thread Eli Hasson
Thanks for your answer, I just entered hard coded values there to make the code more clear, this is not the issue. Eli On Aug 2, 2013 10:29 PM, "Nobu Games" wrote: > Sorry Eli, > > I should have read your code more carefully. You're hard-coding file paths > in that

Re: [android-developers] Re: ContentResolver insert return null on 4.3

2013-08-02 Thread Eli Hasson
re need to check the result for null and come up with a > strategy for coping with that problem, like scheduling a re-query or > checking if your activity is about to be finished. > > On Friday, August 2, 2013 12:29:31 PM UTC-5, eli wrote: >> >> This code works on all Android

[android-developers] ContentResolver insert return null on 4.3

2013-08-02 Thread eli
ENT_URI,* *content);* On 4.3 *uri *is null. Can someone help? Thanks, Eli -- -- 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 unsubscrib

[android-developers] how to display candidate list when standard android Latin IME keyboard is hidden

2012-07-17 Thread eli
Hi, May I know how to modify the standard android ime to display candidate list view when using the hardware keyboard to type on the emulator skin? I had override the onEvaluateInputViewShown to always return true but nothing appears. Thanks -- You received this message because you are subsc

[android-developers] Re: Recodring a video using the front Camera on Honeycomb 3.1 not working for me on Acer A500

2011-09-02 Thread eli
Wrong link, here is the correct one: http://androidwarzone.blogspot.com/2011/09/recodring-video-on-android-device.html Eli -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-

[android-developers] Re: Recodring a video using the front Camera on Honeycomb 3.1 not working for me on Acer A500

2011-09-02 Thread Eli Hasson
Here is the correct link: http://androidwarzone.blogspot.com/2011/09/recodring-video-on-android-device.html On Sat, Sep 3, 2011 at 8:59 AM, eli wrote: > I found a solution to my problem, I switch to h264 codec, here is my full > blog post on this: > > http://www.blogger.com/blog

[android-developers] Re: Recodring a video using the front Camera on Honeycomb 3.1 not working for me on Acer A500

2011-09-02 Thread eli
I found a solution to my problem, I switch to h264 codec, here is my full blog post on this: http://www.blogger.com/blogger.g?blogID=7033865418360132052#editor/target=post;postID=5827118118645974596 Eli -- You received this message because you are subscribed to the Google Groups "An

[android-developers] Recodring a video using the front Camera on Honeycomb 3.1 not working for me on Acer A500

2011-08-17 Thread eli
. Thanks, Eli -- 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.co

[android-developers] Can't solve this problem.

2011-03-24 Thread eli
FILE MainClass.java package xxx.yyy; import android.app.Activity; import android.os.Bundle; import android.widget.TextView; public class MainClass extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) {

[android-developers] recent app dialog selection border

2011-02-28 Thread eli
Hi, May I know how to replicate the recent app dialog selection border around the app icon? 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 fro

[android-developers] Re: getLocationInWindow API of View class bug?

2010-10-25 Thread eli
sorry ignore my posting. Found the solution. print out the location values in onMeasure where the x, y coordinate is undetermine. On Oct 25, 6:18 pm, eli wrote: > Hi, > > I think there may be a bug in getLocationInWindow API, should the > calculation below take the padding

[android-developers] getLocationInWindow API of View class bug?

2010-10-25 Thread eli
Hi, I think there may be a bug in getLocationInWindow API, should the calculation below take the padding of view into consideration. //extract from View.java while (viewParent instanceof View) { final View view = (View)viewParent; location[0] += view.mLeft - view.mScrollX

[android-developers] how export an resources attribute

2010-09-16 Thread eli
Hi, I have problem trying to export an resource attribute. Let's say I have a jar file containing some android widget class and R.java under the package com.example.test. package com.example.test public class Widget1 extends TextView { ... } attr.xml So manually generated a jar file

[android-developers] resource in conflict

2010-09-04 Thread eli
Hi, My application has resource conflict problem. Did some investigation, seems like all the resources within the apk file are cached after they are loaded on demand. The cache is stored in Resources.java mDrawableCache. The key to retrieve the drawable from this cache is combining the data and as

[android-developers] native UDP implementation for android

2010-08-10 Thread Eli A
I'm trying to use native implementation of UDP server/client on Android, I'm using JNI to access the native code from java. The code was tested successfully on Android 1.5 (HTC Hero) but when I tried to run the same application on Android 2.1 (HTC Legend) I got "Stack Corruption Detected" every t

[android-developers] BroadcastReceiver

2010-06-30 Thread Eli Gelernter
king to pick up the sms recieved 2. In the xml file there are about 10 intent filters in the xml file and i am not sure how to do that in the localReceiver. Do I have to register it 10 separate times with each separate intent filter? Thank you very much, Eli -- You received this message

[android-developers] WebView and virtual keyboard

2010-03-22 Thread eli
Hi, Someone know how to hide the virtual keyboard from a webview, I tried all the suggessions from the topic: http://groups.google.com/group/android-developers/browse_thread/thread/180530f680374493 Without success. Anyone, please... Eli -- You received this message because you are subscribed

[android-developers] is AndroidHttpClient deprecated?

2010-01-19 Thread eli
Are most of the classes in android.net.http.* deprecated? There is no javadoc except for SslCertificate and SslError but most classes are still in the sdk? Can I still use it or java.net.* is the way to go? -- You received this message because you are subscribed to the Google Groups "Android Devel

[android-developers] GL11 Implementation Issues

2009-08-25 Thread Eli Yukelzon
Regarding the support or lack of support for OpenGL ES 1.1. I know that officially the emulator and also the G1 device do not support OpenGL 1.1. And I suppose that officially, the SDK does support OpenGL 1.1 (the interface exists). Fact is that when GLSurfaceView creates an instance of a class t

[android-developers] Re: 2D Double Buffering in Android 1.5 (with Canvas?)

2009-06-10 Thread Eli Yukelzon
the only thing that seems close to this is canvas.saveLayer() and canvas.restore() though i may be wrong... anyone else has other info? On Jun 10, 3:06 am, Avatar Ng wrote: > Hi there, > > Do anyone here having experience of applying double-buffering in > Android 2D animation/ games? > > I'm sur

[android-developers] Re: "Notepad Exercise 1 solution" gives weird errors

2009-02-23 Thread Eli Aloni
Remove (delete these files) and try again , it will solve your compilation issue. On Mon, Feb 23, 2009 at 12:33 AM, mpxy wrote: > > Hi everybody, > I'm a beginner in development in Android. I've downloaded and begin > going through Notepad Exercise, however, even when I try running the > the so