[android-developers] Live Streaming videos (MP4) in android on Samsung device

2011-10-15 Thread Shajahan
it context on where to use ??? and how to use it in the .apk file ?? Please suggest a solution. Thanks, Shajahan I. -- 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] HTTP Live Streaming for MP4, 3gp video files in Android

2011-10-18 Thread Shajahan
My line of codes for creating and playing video file from HTTP live Streaming // start of code here String path1 = http://cdn.c.ooyala.com/V4bmJ3MjpltRgNNJaYpy3ooqMUK9_HjM/DOcJ-FxaFrRg4gtGEwOmw3OjBrO2hSke String path2 = http://rescueddoggies.com/videos/MP4/Alegria+Moreno-20100302-1_x264.mp4;;

[android-developers] Re: HTTP Live Streaming for MP4, 3gp video files in Android

2011-10-19 Thread Shajahan
: On Tue, Oct 18, 2011 at 7:39 AM, Shajahan lovesa...@gmail.com wrote: Everywhere in the blog/group I read about the hinting the MP4 file with MP4Box. But I dint get it about how to go for it. (People who have worked with hinting please post the code) There is no code. You download MP4Box

[android-developers] Problem with MediaController view while playing audio file (MP3 format)

2011-10-19 Thread Shajahan
*Description of the Problem:* When I executed the below code it works fine on the device and also plays the song, but the problem is with MediaContoller buttons. When I intentionally clicks on any of the buttons (like seek, start/stop, prev, next, etc) the application crashes with

[android-developers] Data values not populating in the gridview on screen orientation using onConfigurationChanged

2011-10-24 Thread Shajahan
In the onCreate() method of an activity -- done all the initialization part and also invoked the server using the HTTP connection, to get the images -- am using the onConfigurationChanged() of an activity to get the handle of the Screen Orientation -- but when it is rotated from horizontal to

[android-developers] Re: Data values not populating in the gridview on screen orientation using onConfigurationChanged

2011-10-25 Thread Shajahan
, you will need to repopulate your views if you change it on one of the onConfigurationChanged events. Steven Studio LFPhttp://www.studio-lfp.com On Monday, October 24, 2011 7:58:52 AM UTC-5, Shajahan wrote: In the onCreate() method of an activity -- done all the initialization part

[android-developers] Finishing all running activities on clicking logout from any Activity

2011-11-03 Thread Shajahan
My application on launch shows the login screen -- where user needs to enter the username and password this is stored in the shared preference for future auth. On successful login using http connection with the server -- app show the list of items in the Activity say (Activity 1) Say if suppose I

[android-developers] Re: Finishing all running activities on clicking logout from any Activity

2011-11-03 Thread Shajahan
Thanks for the response Ibendlin, I have thought about it ...not working can you post any sample code on which you have worked Thanks. On Nov 3, 4:01 pm, lbendlin l...@bendlin.us wrote: Use startActivityForResult, then listen for the result and hand it through to the parent activity.  Override

[android-developers] Re: Finishing all running activities on clicking logout from any Activity

2011-11-03 Thread Shajahan
@ratheesh, assume a scenario, user not logged out from the app and he want to go back in this case if i apply the above stated solution. then it will take the app to the login screen -- which is not intented by the user and logically this shouldn't be happening rite ??? @Ibendlin, Can you

[android-developers] Re: HTTP Live Streaming for MP4, 3gp video files in Android

2011-11-03 Thread Shajahan
that you are playing. On Wed, Oct 19, 2011 at 4:49 PM, Mark Murphy mmur...@commonsware.comwrote: On Wed, Oct 19, 2011 at 4:15 AM, Shajahan lovesa...@gmail.com wrote: So, my question is there any limit on the size/length of the video file like say it works for length 1min or 2mins tracks

[android-developers] Re: How to go to Home screen..?

2011-11-03 Thread Shajahan
@Abhilash, Are you able to come up with some solution ?? I am somewhat in same scenario looking for help @all, If any one has came across the same problem and successfully implemnted the solution. Please share. Thanks. On Dec 27 2010, 12:27 pm, Abhilash baddam

[android-developers] Previous MapActivity is not shown/refreshed on clicking back from current MapActivity

2012-03-22 Thread Shajahan
I have 2 MapActivity (let call it M1 M2) 1st one (M1) -- no of geo points with pins and on clicking any of the pin take you to the other M2 with more details. Now when click BACK button from M2 to go to previous M1, then the M1 is not shown correctly or not refreshing. Please help. -- You

[android-developers] Re: Previous MapActivity is not shown/refreshed on clicking back from current MapActivity

2012-03-22 Thread Shajahan
to interfere in unexpected and undesired ways. -- K 22.03.2012 12:41, Shajahan пишет: I have 2 MapActivity (let call it M1  M2) 1st one (M1) --  no of geo points with pins and on clicking any of the pin take you to the other M2 with more details. Now when click BACK button from M2 to go

[android-developers] Force opening web URLs YouTube videos in Android phone's DEFAULT browser using Intent.

2012-03-23 Thread Shajahan
I am trying to launch browser with the specified URL. It works fine if it's web URL, but when the URL detected to be a video(say YouTube video) then it come up with choices to make between the browser YouTube App installed in the device. Instead of this how to force this behavior to have the URL

[android-developers] Re: Android Development Environment?

2011-11-14 Thread Shajahan
Eclipse is the most widely used development tool for Android Development and you can use any OS (Linux / Windows) of your choice. On Nov 12, 2:56 am, Jones stdjo...@gmail.com wrote: What development environments are most Android developers using (Eclipse, IntelliJ, etc)? What development

[android-developers] Android database problem while refering .sql file

2011-11-20 Thread Shajahan
If there are SQLite create/insert statements in .sql (eg.; createtablestmt.sql) file .then how it is called from Android Project Am getting the error that no such table exits in the database ... and also I dont see any CREATE table statements in the project. Note : am refering to some

[android-developers] How to show PopupWindow in an Activity on some click event

2011-11-25 Thread Shajahan
I need to show the information about the field in an activity. For this i have created a buton and placed next to the field. Now when wants to know abt this field, he can click on that button and get the info. I am trying for PopupWindow. i have placed my code on the onClick event of the button

[android-developers] Re: How to show PopupWindow in an Activity on some click event

2011-11-25 Thread Shajahan
parentcontext; 2.Assign this in the onCreate Method.     parentcontext = this; 3. then pass the parentcontext to the popupwindow   or The another solution would be use getParentContext(), Might helps. On Fri, Nov 25, 2011 at 4:29 PM, Shajahan lovesa...@gmail.com wrote: I need to show

[android-developers] Re: How to show PopupWindow in an Activity on some click event

2011-11-25 Thread Shajahan
its not working...:( looking for some help On Nov 25, 4:20 pm, Mukesh Srivastav mukicha...@gmail.com wrote: Let use know, if it works. Warm Regards, *Mukesh Kumar*, Android Consultant/Freelancer, India,Hyderabad. On Fri, Nov 25, 2011 at 4:43 PM, Shajahan lovesa...@gmail.com wrote: Hi

[android-developers] Re: How to show PopupWindow in an Activity on some click event

2011-11-28 Thread Shajahan
, it will also work as popup. On Fri, Nov 25, 2011 at 4:57 PM, Shajahan lovesa...@gmail.com wrote: its not working...:( looking for some help On Nov 25, 4:20 pm, Mukesh Srivastav mukicha...@gmail.com wrote: Let use know, if it works. Warm Regards, *Mukesh Kumar*, Android Consultant

[android-developers] Setting the radius values for Maps in Android

2011-11-30 Thread Shajahan
when we start the application, map shows the current location and then if i want to find any particular point/location (say a multiplex) within the radius specified in kms(say 25 kms). then how to go about it. I need some code examples ?? -- You received this message because you are subscribed

[android-developers] Populating the Spinner/ArrayAdapter based on the value in the EditText in the onCreate() method

2011-12-02 Thread Shajahan
I have to query the db to populate the Spinner/ArrayAdapter based on the value provided in the editText field in the onCreate() method. How to achieve this ? Please suggest if any alternative way to go about to achieve this task. -- You received this message because you are subscribed to the

[android-developers] Clearing old maps at the background while loading the new maps

2012-03-06 Thread Shajahan
Currenty, I have mapview and mapcontroller to show the map. And it works fine and showing correct location as well. But the problem is, while loading new maps at the background old map is visible. I want to get rid of this old map showing to the user and display simply a blank view. And after