[android-developers] HID Absolute coordinate data support in Android

2012-11-20 Thread newbie
Hi, I have developed a HID digitizer solution which gives absolute coordinate data to Host. When I use it on PC, it works fine. However, when I use it on ICS 4.0.1 android Host, absolute data is not recognized by the Host. However, I can control the tip switch on/off . Is this a known issue

[android-developers] getResponseCode

2012-02-07 Thread Androiding Newbie
Hi guys, I sorta have a problem. I m currently programming a Android Code for passing information to a server using httpsURLConnection. However I have problems when I execute the command: int rc = httpsUrlConnection.getResponseCode(); It always takes at least half a minute to process this method

[android-developers] Package name

2011-09-26 Thread NEWBIE
Hi, I am new at android development. I installed eclipse with android sdk. I wanted you to explain me what is Package name? I need it to create a new project... -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send ema

[android-developers] Background data and Auto-Sync

2011-06-09 Thread newbie
Hi, I am using an HTC desire with Gingerbread installed on it. I have a question on Background Data and Auto-Sync settings. I have my work email (MS exchange) and gmail (IMAP/POP3) set up on the phone. I have set up my Auto-Sync update settings such that my work email updates via Push and gmail up

[android-developers] WebView in service.

2011-04-13 Thread Newbie
Hi, I am trying to run the webview.loadurl() in the service. I have javascript that sends notification to App asynchronously. Is this possible to do? I can easily call the javascript from App and App from the javascript. But later doesn't work when running as service. TIA. Newbie! --

[android-developers] Trying to track a webkit/Browser fix

2010-09-20 Thread droid-newbie
Hi, I see bug in eclair browser trying to load some websites, which have an image as a hyperlink, that is "unclickable" or does not take effect. I connected Wireshark and noticed no packets left the device, implying the webkit/browser didn't like it. This issue is fixed on froyo. How do I locate t

[android-developers] Soft Keyboard covers part of dialogbox in pan and scan mode

2010-09-02 Thread droid-newbie
I have a view with a text edit box at the bottom, which when clicked invokes a soft keyboard and the view is shifted up. The issue is that the keyboard obscures a significant portion of the text edit box. Looking at the diagrams @ http://developer.android.com/resources/articles/on-screen-inputs.ht

[android-developers] Acquiring Location Message on websites, requesting location.

2010-09-01 Thread droid-newbie
Hi, *just posted this on Platform, but this may be the right place for this question * If I take a Droid phone, I can turn off checkbox options under "Location and Security" for 1. Use Wireless Networks 2. Use GPS Satellites and then under Privacy, turn off the option for ""Use My Location" That

[android-developers] How can I get the EditText information from Inputmethod?

2010-08-04 Thread android-newbie
hello, i'm making a soft-keyboard. but some problems are encountered. i need editor's maxLength information, but.. EditorInfo has not 'android:maxLength' information. how can i solve this problem? please help. thanks -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Re: port forwarding

2010-02-15 Thread linux newbie
posed, > leading to massive compatibility problems, and the need to update all > clients at the same timethe list of reasons goes on and on. > > On Feb 15, 3:55 pm, Mark Murphy wrote: > > linux newbie wrote: > > > 1. Is there mysql-connector/jdbc for android?

Re: [android-developers] port forwarding

2010-02-15 Thread linux newbie
able info? Thanks On Mon, Feb 15, 2010 at 6:43 PM, Kevin Duffey wrote: > Little confused.. are you trying to allow your mobile app connect across > the network to your database? > > On Sun, Feb 14, 2010 at 4:12 PM, linux newbie > wrote: > >> Hi, >> >> I am

[android-developers] port forwarding

2010-02-14 Thread linux newbie
Hi, I am running mysql server (on remote machine) and I can able to connect to it from my host machine. I written a java code to connect and read some table values. Now I compiled the same java code in Android and on running it in emulator it is unable to connect to server. I believe I need to d

[android-developers] Re: How to get Context Menu and panning work together in an app.

2010-02-08 Thread newbie
Can anyone please help me here? Thanks. On Feb 4, 4:15 pm, newbie wrote: > Hi, > > I am trying to write an app which has an ImageView and the app allows > to perform panning on the image. I also want to register context menu > with this ImageView so that on long press Context m

[android-developers] How to get Context Menu and panning work together in an app.

2010-02-04 Thread newbie
Hi, I am trying to write an app which has an ImageView and the app allows to perform panning on the image. I also want to register context menu with this ImageView so that on long press Context menu comes up. I tried playing around with the onTouch method, but could not get it working. On long pr

[android-developers] onDraw and Surface Flinger

2009-12-10 Thread android-newbie
Hi I just wonder if the onDraw(Canvas canvas) in the code below would eventually trigger Surface Flinger to do any compositing? If yes, can you give me some hints of the call flow? Thank you very much!!! an class DrawOnTop extends View { public DrawOnTop(Context context) { super(context); //

[android-developers] postBuffer and memcpy

2009-12-04 Thread android-newbie
Hi I have a question. Hope someone can help me out. In my Camera Preview Application, when I post preview buffer to Surface Flinger via mSurface->postBuffer, does this cause a memory copy of data from preview buffer to Camera SurfaceView's buffer? Thanks for your help, an -- You received this

[android-developers] LayerBase::drawWithOpenGL

2009-12-02 Thread android-newbie
Hi I have been looking at LayerBase::drawWithOpenGL() and trying to figure out if the scaling being done in this function is performing a "stretch" or "crop", but not able to figure that out yet. Can someone please let me know if LayerBase::drawWithOpenGL() is doing "stretching" or "cropping" for

[android-developers] UI window in Camera Preview application

2009-11-30 Thread android-newbie
I posted this last week, but not able to get any reply. Let's say in my example I am working with SurfaceView for my CameraSurfaceView. I have a few questions below, hope someone can help me with the answers. 1. When this SurfaceView gets created (I assume via final CameraSurfaceView cameraView

[android-developers] Re: Pixel Format Conversion in SF

2009-11-27 Thread android-newbie
Hackborn wrote: > Yes, you set the format and such by the setters you mentioned.  The relation > with surfaceChanged() is that this gets called after any such parameters > have changed to provide a surface with the new configuration. > > > > > > On Fri, Nov 27, 2009

[android-developers] UI window in Camera Preview application

2009-11-27 Thread android-newbie
Let's say in my example I am working with SurfaceView for my CameraSurfaceView. I have a few questions, hope you can help me. 1. When this SurfaceView gets created (I assume via final CameraSurfaceView cameraView = new CameraSurfaceView (getApplicationContext()), this will result in a call creat

[android-developers] Re: Pixel Format Conversion in SF

2009-11-27 Thread android-newbie
ormat, .setFixedSize related to the surfaceHolder.surfaceChanged() callback? On Nov 26, 5:41 pm, Dianne Hackborn wrote: > It totally depends.  It may be surface flinger, it may be an overlay that is > YUV, etc. > > > > > > On Thu, Nov 26, 2009 at 2:39 PM, android-newbie w

[android-developers] Pixel Format Conversion in SF

2009-11-26 Thread android-newbie
I am looking at the source code of a Camera Preview application and learning that the preview buffers coming from the sensor is in YUV422 format. However, this preview frame is showed on the display in RGB. Can someone please let me know where the pixel format conversion happens? Is it inside Su

[android-developers] Windows manager in Android frame work

2009-11-20 Thread android-newbie
I have read and learned that Windows manager creates surfaces for the application on Android, but not able to understand how this happens. Can someone please explain this to me? Also, how does Windows manager start up in any applicatioin, for example like Camera Preview Application? Thank you ver

[android-developers] surfaceCreated() and CreateSurface() in camera preview application

2009-11-20 Thread android-newbie
I have some questions regarding the code below for camera preview applicaiton. I am hoping someone can help me out. Thanks in advance. 1. How does surfaceCreated() and CreateSurface() relate? Is this surface created via createSurface() from SurfaceFlinger client to SurfaceFlinger server? If

[android-developers] Re: CameraSurfaceView and how surfaceCreated() gets called - Can someone please help me?

2009-11-19 Thread android-newbie
confirm? Thanks. On Nov 19, 7:22 am, Mark Murphy wrote: > android-newbie wrote: > > 1.  How does surfaceCreated get called?  From SDK, it is called > > immediately after the surface is first created, but I still don't > > know > > who creates this surface? > &g

[android-developers] CameraSurfaceView and how surfaceCreated() gets called - Can someone please help me?

2009-11-19 Thread android-newbie
I have some questions regarding code below for camera preview applicaiton. Can someone please help me out? 1. How does surfaceCreated get called? From SDK, it is called immediately after the surface is first created, but I still don't know who creates this surface? 2. Why do we need to set i

[android-developers] CameraSurfaceView and how surfaceCreated() gets called

2009-11-18 Thread android-newbie
I have some questions regarding code below for camera preview applicaiton. Can someone please help me out? 1. How does surfaceCreated get called? From SDK, it is called immediately after the surface is first created, but I still don't know who creates this surface? 2. Why do we need to set it

[android-developers] Re: Got 12 Google Wave invitations to use, let me know if you need

2009-11-09 Thread Newbie
I would be more than happy to have one. Please send it to mallik.pull...@gmail.com On Nov 9, 12:55 pm, dirtytofu wrote: > I would appreciate it if you can send me one to simon...@gmail.com > > Thanks! > > On Nov 9, 8:33 am, Gopal Biyani wrote: > > > > > Please can you send me one gopalbiy...@gma

[android-developers] ADP 1.1 (JFv1.43_Holiday.zip) import contacts from SIM card crashes

2009-05-03 Thread Newbie
I bought unlocked T-mobile G1 phone in US, when I returned to Netherlands with my Vodafone, and the phone repeatedly sends international costing 10 Euros a day. Later I found out myfaves is sending these costly messages, I wanted to turn off myfaves and I followed the following steps: 1. I downgra

[android-developers] Cannot retrive all phone numbers from Contacts

2009-04-09 Thread Newbie
Can some body help me in retrieving all the Phones numbers (I mean if a contact has a home and cell phone) my code (below) does not get the Home number. String[] s = new String [] {People._ID,People.NAME,People.NUMBER}; int[] names1 = new int[] {R.id.Name,R.id.Number}; i