[android-developers] RTMP/RTP Library for Video

2012-11-10 Thread Kevin Anthony
I need to send RTMP or RTP streams from an android phone to a services. I was wondering if there was any library that handled this well Thanks Kevin Anthony -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this g

Re: [android-developers] Server for Android APP

2011-08-23 Thread Kevin Anthony
subscr...@googlegroups.com > For more options, visit this group at > http://groups.google.com/group/android-developers?hl=en -- Thanks Kevin Anthony www.NoSideRacing.com -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To

Re: [android-developers] Re: Regarding asynchronous communication in Android.

2011-06-01 Thread Kevin Anthony
I understand why you would want asynchronous communication, but can you provide more information on what your trying to achieve. On Jun 1, 2011 3:28 PM, "Ali Chousein" wrote: > You can achieve it by not making your communication synchronous. Set > aside jokes, please have a look to the link TreKin

[android-developers] Problems with ListView

2011-03-30 Thread Kevin Anthony
I have a nested listview to display information about TV shows first the Root listview shows the TV show name when you click on the show name, you get a list of Episodes for the show, including a title, episode number, and episode name if you click on a show, it opens up another activity I have t

Re: [android-developers] Fetching messages from a server

2011-03-27 Thread Kevin Anthony
Thanks, that did the trick On Sat, Mar 26, 2011 at 12:32 PM, Mark Murphy wrote: > On Sat, Mar 26, 2011 at 12:24 PM, Kevin Anthony > wrote: >> I have an application that needs to fetch messages from a server, >> currently i do this via a service, running in the background. &

Re: [android-developers] best way to save images files

2011-03-27 Thread Kevin Anthony
I would think the best way to save them is cached on a server. This way they are always up to date and you don't use phone memory Sent from a phone On Mar 27, 2011 12:05 PM, "Igor Nesralla Ribeiro" wrote: > > Hi, > > > > I have this scenario : > > I have 50 images files of restaurants , that re

[android-developers] Fetching messages from a server

2011-03-26 Thread Kevin Anthony
with AbstractThreadedSyncAdapter, but this seems a little heavy handed. Is there some middle ground? Something i should look into? -- Thanks Kevin Anthony -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to and

Re: [android-developers] emulator not showing app

2011-02-28 Thread Kevin Anthony
Have you looked under the launcher to see id its their? Sometimes the emulator doesnt automatically launch the app. Sent from an android phone. On Feb 28, 2011 11:08 AM, "sourabh gupta" wrote: > > hey > everybody, > I am new in developing app for android. > I have installed every update of andr

[android-developers] onClick for ExpandableListAdapter

2010-12-20 Thread Kevin Anthony
I would like to invoke a function when a child is clicked within a ExpandableListAdapter The children are ViewHolders. Below is my getChildView from myExpandableListAdapter class. it reacts to Long clicks, but i can't figure out how to also get it to react to a short click. Thanks Kevin public

Re: [android-developers] Re: unable to download sdk 2.3

2010-12-09 Thread Kevin Anthony
If you update you plugin, it won't look for adb.exe anymore. It'll look for the replacement. On Dec 10, 2010 1:26 AM, "Atik" wrote: > i havent found any files there like adb.exe..after restarting the > eclipse its giving error that adb.exe missing for the sdk.. > and i m using eclipse ,i think

Re: [android-developers] Re: unable to download sdk 2.3

2010-12-09 Thread Kevin Anthony
Update your eclipse plugin On Dec 10, 2010 1:25 AM, "Atik" wrote: > thanks ..but when i restarted the eclipse ...its giving me error for > the current sdk saying adb.exe not found..check for plugins etc... > > i have tried with sdk updater several times but i got the same > error .. > confused..ne

[android-developers] Re: Problem removing from listView

2010-12-06 Thread Kevin Anthony
le( Name.size() > 0 ) { >   Name.remove(0); > > } > > On Dec 6, 3:59 pm, Kevin Anthony wrote: > > > > > > > > > i have a List > private static List Name = new ArrayList(); > > private static List Number = new ArrayList(); > > private stati

[android-developers] Problem removing from listView

2010-12-06 Thread Kevin Anthony
i have a List Name = new ArrayList(); private static List Number = new ArrayList(); private static List Address = new ArrayList(); private static List Email = new ArrayList(); and i'm trying to loop threw and delete them when a user longclicks on them and clicks delete here's the delete code: pub

Re: [android-developers] Retrieve Version of another app

2010-11-30 Thread Kevin Anthony
il to android-developers@googlegroups.com > To unsubscribe from this group, send email to > android-developers+unsubscr...@googlegroups.com > For more options, visit this group at > http://groups.google.com/group/android-developers?hl=en -- Thanks Kevin Anthony www.NoSideRacing.c

Re: [android-developers] Re: [Error ] annot find symbol symbol : method log(java.lang.String)

2010-09-22 Thread Kevin Anthony
The method is Log.d(tag,message); Looking at what you posted, it looks like you need to capitilize the L and put a d,v,i,w,e for debug verbose info warning error On Sep 22, 2010 1:04 PM, "David Turner" wrote: > Please avoid cross-posting !! this should go into android-developers only. > > On Wed,

[android-developers] Detect clear button on notifications

2010-08-24 Thread Kevin Anthony
Is there a way to detect if the clear button on the notification bar has been pressed? or Is there a way to tell if a notification is still active? Thanks Kevin A -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send

Re: [android-developers] HTTP "Bad Request" when Posting File data to HTTPS from Phone But Not Emulator

2010-05-06 Thread Kevin Anthony
Do a tcp dump on the webserver when the requests come in from the emulator and phone. Then compair the headers. Just a quick thought, is the webserver behind a firewall? If the emulator is on a machine on the same network, that might be the cause Kevin A On May 6, 2010 12:23 PM, "Paul Tongyoo"

Re: [android-developers] database update

2010-02-25 Thread Kevin Anthony
Alter http://www.techonthenet.com/sql/tables/alter_table.php Kevin On Feb 25, 2010 11:40 AM, "Dan" wrote: I've got a question about updating an app after release. If I have a database that contains 10 columns and I add a feature that requires an 11th column after the app has been released, whe

[android-developers] Question about layouts and the emulator

2009-12-10 Thread Kevin Anthony
7;t find any information about how to switch layout files mid-program. 2) i don't have an android yet, and won't until the 1st of the year, so i'm making due with the emulator. but i can't seem to figure out how to switch it's orientation. Thanks for the time. Kevin