[android-developers] Re: how to implement ffmpeg video codec for video player +android

2011-09-22 Thread frak
This helped me a lot... https://github.com/guardianproject/android-ffmpeg This is not an easy path you have chosen however - I found cross- compiling to be very tricky to get going on my mac. May the force be with you... On Sep 21, 3:46 pm, NAVI NEW navi44...@gmail.com wrote: Please give me  

[android-developers] ActivityNotFoundException

2010-03-01 Thread frak
Hi there, I am trying to start a new activity from a menu action, as follows: public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()) { case MENU_PREF: showDialog(MENU_PREF); return true;

[android-developers] Updating UI from a timer

2010-02-22 Thread frak
Hi, I am new to Android development and have been working on a simple demo app that needs to update a TextView a few times from an array after a button is clicked. I have read and adapted the code found here to achieve this: http://developer.android.com/resources/articles/timed-ui-updates.html

[android-developers] Re: No sound when press too much

2010-02-22 Thread frak
How about a flag that you set to true on the first press and back to false once it has finished playing? (I am really new to the SDK so am not sure how viable this is, but it works in other places I have needed to control access to a rare resource) frak On Feb 22, 4:06 pm, CMF manf...@gmail.com

[android-developers] Re: Updating UI from a timer

2010-02-22 Thread frak
Don't worry, I worked it out for myself... On Feb 22, 2:34 pm, frak frak@gmail.com wrote: Hi, I am new to Android development and have been working on a simple demo app that needs to update a TextView a few times from an array after a button is clicked.  I have read and adapted the code