[android-developers] android system freeze while playing audio

2017-01-17 Thread remu kelly
Hi all, I am having a android based device. it is connected to a display monitor through hdmi. when we are playing a audio file and listening the audio through hdmi tv audio port. the whole system is getting hanged (no traces coming out on console.). Please help me what way we can find the

Re: [android-developers] changing contents of apk and rezipping?

2013-01-07 Thread George Kelly
I think the problem is the required files in the right places what are the required files and how do we know that they are in the right place On Tuesday, December 15, 2009 5:40:38 PM UTC-5, Dianne Hackborn wrote: An .apk is just a zip file. As long as you end up with a correctly signed zip

Re: [android-developers] Re: Tethering two android phones

2012-05-10 Thread devin kelly
On Thu, May 10, 2012 at 12:35 PM, Robert Greenwalt rgreenw...@google.comwrote: On Thu, May 10, 2012 at 9:23 AM, Devin dwwke...@gmail.com wrote: On Thursday, May 10, 2012 11:08:20 AM UTC-4, Robert Greenwalt wrote: Could you use wifi? They will both be given addresses via dhcp and will

[android-developers] connecting to mysql database

2011-11-21 Thread mark kelly
Hi Im trying to connect to a mysql database which is on localhost. i get the error: Error in http connection org.apache.http.conn.HttpHostConnectException: Connection to http://10.0.2.2 refused The code is: package com.test.poll; import java.io.BufferedReader; import java.io.InputStream;

[android-developers] android application which communicates with one central database?

2011-11-21 Thread mark kelly
Hi Im new to android development. The application I would like to write needs to have one database on a server, which all instances of the application needs to communicate with simply. So there will be no database on each android, just an ability to send info to the central database. Can anyone

[android-developers] WebKit source

2011-10-18 Thread Peter Kelly
itself is not open source, but according to the licensing terms of WebKit Google is supposed to make the source for their port available. Peter Kelly -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Re: Cursor in EditText not visible

2011-07-07 Thread Kelly
I'm running into the same issue and I also set my backgroundColor of my EditText to be white. Did you happen to find any solutions to this? On Jun 30, 10:59 pm, CrazzyAndroidians nithin@gmail.com wrote: Hi, I am having a strange issue where the cursor in the EditText is not visible but I

[android-developers] Re: Can onMeasure be skipped when adding a View to a ViewGroup?

2011-06-10 Thread Kelly Merrell
to write your own layout manager. On Thu, Jun 9, 2011 at 1:34 PM, Kelly Merrell kmerr...@mercuryintermedia.com wrote: I have a RelativeLayout where I am adding views dynamically as the user scrolls vertically or horizontally. I have rolled my own ViewRecycler since there is potentially

[android-developers] Can onMeasure be skipped when adding a View to a ViewGroup?

2011-06-09 Thread Kelly Merrell
I have a RelativeLayout where I am adding views dynamically as the user scrolls vertically or horizontally. I have rolled my own ViewRecycler since there is potentially thousands of views that could compose the whole of what can be scrolled, but I only show 30 or so at any time. Think a zoomed in

[android-developers] StackView example as a non-widget application

2011-05-02 Thread Kelly
instead of from Remote resources)? Thank you very much, -Kelly -- 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

[android-developers] Re: Fragment transactions, transitions and the back stack

2011-03-23 Thread Kelly Merrell
yourself. On Tue, Mar 22, 2011 at 3:32 PM, Kelly Merrell kmerr...@mercuryintermedia.com wrote: Related bug report here: http://code.google.com/p/android/issues/detail?id=15623colspec=ID%20... On Mar 16, 9:54 am, Kelly Merrell kmerr...@mercuryintermedia.com wrote: Hi All, I am

[android-developers] Re: Fragment transactions, transitions and the back stack

2011-03-22 Thread Kelly Merrell
Related bug report here: http://code.google.com/p/android/issues/detail?id=15623colspec=ID%20Type%20Status%20Owner%20Summary%20Stars On Mar 16, 9:54 am, Kelly Merrell kmerr...@mercuryintermedia.com wrote: Hi All, I am having trouble using or understanding how popping FragmentTransactions off

[android-developers] Fragment transactions, transitions and the back stack

2011-03-16 Thread Kelly Merrell
Hi All, I am having trouble using or understanding how popping FragmentTransactions off of the back stack handles the custom animations. Specifically, I expect it to call the out animation, but it doesn't seem to. I have a simple method to handle a fragment transaction (FragmentTransaction) where

[android-developers] Re: How To Determine Which Dialog Was Dismissed

2011-02-24 Thread Ian Kelly
what is brittle about it as your current approach looks fine? -- 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] JOB OPPORTUNITY

2010-07-02 Thread Kelly Hamilton
Hi - My name is Kelly Hamilton and I am an IT Recruiter. We have an EXCELLENT opportunity for Android Developers. The position is located in San Diego, CA and is a long-term contract. I would like to speak with anyone who is interested in finding out more about this opportunity. Please email

[android-developers] Re: How capacitive is capacitive?

2010-05-12 Thread Kelly
Capacitive touch screens actually report ellipses (I think all of them behave this way), which can be interpreted in a number of algorithms. What you will get is likely processed a few times. Cheers On May 9, 5:43 pm, mjpatey mjpa...@gmail.com wrote: This is a strange question... Is the

[android-developers] Re: Neighbouring Cell info - Clarification needed

2010-05-12 Thread Kelly
LAC (Local Area Code) is specific to area, like mine is 415 (San Francisco). The Cell ID is the ID of the cell tower. If only one network uses this tower, it's specific to that network. On May 9, 10:06 pm, Vinay S s.vinay@gmail.com wrote: Hi,  Thanks for the reply. Actually, I am looking

[android-developers] Showing a progress dialog while waiting for video buffering

2010-05-12 Thread Kelly Merrell
I'm currently using VideoView to play videos in my app and I would like to display a progress dialog (indeterminate) while the video buffers. Currently I am showing the progress onCreate and then hiding it in my onPreparedListener. This is fine for playing from the beginning, but often I will want

[android-developers] Re: Developing a C++ static library for use with Java on the Android

2010-04-29 Thread Kelly
The two-libs example uses a shared library that wraps the static one, exactly as desired. I'm currently doing the same thing in my project :-) On Apr 28, 11:51 pm, FrankG frankgru...@googlemail.com wrote: Hello Kelly, I would not say this can be so easy at the end. Josh says he want to use

[android-developers] Re: Developing a C++ static library for use with Java on the Android

2010-04-28 Thread Kelly
Download the android NDK and see how they use libraries. Just reverse engineer their very simple JNI projects and you can build yours no problem. -- 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 for font support at runtime?

2010-04-05 Thread kelly
of fonts in Android, and see if there's support for my Unicode block in the available fonts. Is that possible? Any insights greatly appreciated. Thanks, Kelly -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-02 Thread kelly
I signed up as soon as I knew it was legit. Google, thanks very much! On Mar 2, 7:14 pm, Seni Sangrujee sangru...@gmail.com wrote: On Mar 2, 5:04 pm, mscwd01 mscw...@gmail.com wrote: Can I get an idea of how many people have submitted their details? I submitted my info.  The signup form is

[android-developers] YouTube video encoding for Android devices

2009-08-15 Thread kelly
, and lack of pixellation I see on YouTube videos on Android. Does anyone here have any insights into that, or might be able to suggest a group where an inquiry like this is more appropriate? Thanks, Kelly --~--~-~--~~~---~--~~ You received this message because you

[android-developers] Payment options for Android Market

2009-07-30 Thread kelly
feature coming out of beta will be shorter than the beta period for, say, Gmail. Any insights are appreciated. Thanks, Kelly --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group

[android-developers] Droid Translate

2009-04-04 Thread kelly
Hello, I've been playing around with GWT this week, and wrote a small app to translate strings.xml files into other languages. It's pretty basic, but I thought I'd make it known in case anyone here had any use for such a thing. http://fognl.com/droid-translate Thanks, Kelly Schrock Fognl

[android-developers] Which android's version can support file transfer through bluetooth?

2009-04-01 Thread Kelly Mao
Which android's version can support file transfer through bluetooth? --~--~-~--~~~---~--~~ 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

[android-developers] Some questions about Bluetooth A2DP.

2009-04-01 Thread Kelly Mao
I have got the code of Android 1.5,But i haven't downloaded in the phone. During read the code,I have some question about the A2DP. 1) The bluetooth earphone have connected with the phone,How does it switch to A2DP channel when we play mp3 ? Auto-switch or Depending on events from application? 2)

[android-developers] For Bluetooth File Transfer What I can do?

2009-04-01 Thread Kelly Mao
Android 1.0 can't support file transfer.If I want to do by myself what I can do? It seems don't have OBEX protocol. who knows? Please give me reply. Thanks. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] How to wake up the screen?

2009-02-18 Thread kelly
Hello, I need to cause the display to light up programmatically. Is there an established way of doing this? Thanks, Kelly --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: How to wake up the screen?

2009-02-18 Thread kelly
My wording here wasn't the clearest. I meant to say: I need to programmatically cause the display to light up. Is there a way to do this? I can get notifications when something else causes it to happen, but I need to initiate the process. Thanks. On Feb 18, 12:31 pm, kelly kellyschr

[android-developers] Re: How to wake up the screen?

2009-02-18 Thread kelly
Al, That works perfectly. Thanks. On Feb 18, 2:02 pm, Al alcapw...@googlemail.com wrote: You can use a wakelock via the PowerManager. On Feb 18, 7:53 pm, kelly kellyschr...@gmail.com wrote: My wording here wasn't the clearest. I meant to say: I need to programmatically cause

[android-developers] Re: Does Android Browser support right menu - open with ?

2009-01-22 Thread kelly
To right-click something, be sure you use the rightmost finger on the hand you're using to click. For example, if you normally use the index finger of your right hand to click something, use your right pinky instead. If you normally use your left index finger, use your left thumb to right-click.

[android-developers] Encrypted email

2008-12-26 Thread James Kelly
I was wondering if anyone is working on the encrypting of text messages. Just at the point of storage. Maybe only encrypting threads for specific people. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Getting error when trying to read file : java.lang.IllegalArgumentException: File /data/testing.txt contains a path separator

2008-12-10 Thread kelly
You might try just using java.io.File, which works well for me: File file = new File(/whatever/path/to/file.txt); try { InputStream in = new FileInputStream(file); ... } catch(Exception ex) { ... } I've noticed in the documentation that openFileInput() is supposed to be what you use, but

[android-developers] Re: Getting error when trying to read file : java.lang.IllegalArgumentException: File /data/testing.txt contains a path separator

2008-12-10 Thread kelly
Ah, that makes sense. What I'm doing with the java.io.File approach is reading/writing to/from areas on the sd card. On Dec 10, 10:38 am, Mark Murphy [EMAIL PROTECTED] wrote: kelly wrote: You might try just using java.io.File, which works well for me: File file = new File(/whatever/path

[android-developers] Overlay, like in the Pictures application

2008-12-08 Thread kelly
Hello, The pictures application displays a set of left/right arrows in what I think is an overlay, allowing a user to switch between pictures. I need to create something similar, but I'm not sure how to do it. Can anyone give me a general idea of how this is done? Thanks, Kelly