[android-developers] Re: mediaMetadataRetreviever.GetFrameAtTime

2011-12-13 Thread And-Rider
Any update on this Jeff. I am facing with this issue right now and your thoughts on it would be really helpful -- 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 unsu

[android-developers] Re: HDMI out API

2011-04-21 Thread And-Rider
No.. You can refer to this link for details https://groups.google.com/forum/#!topic/android-developers/Jxp_9ZtzL60 -- 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

[android-developers] Google's global quick search widget missing in Android 2.2

2010-05-21 Thread And-Rider
I was unable to find the google's search widget on the home screen neither on the the list of available widgets.If i click menu from the home screen and if i press search nothing happens. I could neither find an option called "Search" in settings page from where i could enable my application in se

[android-developers] Load CSS Styles in a Textview

2010-04-21 Thread And-Rider
Is it possible to display Css style tags in a text view..? The method Html.fromhtml() converts only html tags to a spanned string but not the Css styles -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to an

[android-developers] Re: Adding Hyerplink in an Email Body intent

2010-04-08 Thread And-Rider
ew. > > Thanks and Regards, > Kumar Bibek > > On Apr 9, 10:24 am, And-Rider wrote: > > > Is it possible to add a hyperlink in email body. > > > I tried adding tag but that wasn't working too.. -- You received this message because you are subscribed to the G

[android-developers] Adding Hyerplink in an Email Body intent

2010-04-08 Thread And-Rider
Is it possible to add a hyperlink in email body. I tried adding tag but that wasn't working too.. -- 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

[android-developers] Re: Possible to finish() my activity when Home is pressed?

2010-03-25 Thread And-Rider
I am not sure about your exact requirement but if u want to launch the parent activity each time app is launched from home add android:clearTaskOnLaunch="true" in your manifest to your parent activity.This should clear the stack on launch. On Mar 25, 11:52 pm, paladin wrote: > I saw another thre

[android-developers] Re: How to add Edittext box in a home screen widget

2010-03-25 Thread And-Rider
doesn't show edittext box. You can prove > it by digging into it with hierarchy viewer. For now, you can't have > EditText in app widget (at least for default android's home launcher) > > On Mar 25, 4:25 pm, And-Rider wrote: > > > I want to create a cust

[android-developers] How to add Edittext box in a home screen widget

2010-03-25 Thread And-Rider
I want to create a custom widget for my application which should be used for doing search internally in my application.But i am not able to place an Edit text control inside a widget.While browsing further i found that Edittext box was not included for creating custom widgets http://developer.andr

[android-developers] Re: How Does HttpURLConnection work

2010-01-18 Thread And-Rider
eeze images through simultaneously. > > On Jan 18, 8:53 pm, And-Rider wrote: > > > yes if i send my calls i a sequential manner it should not be an > > issue. But in certain cases asynchronous calls do help us to speed up > > the performance a lot > > > For example if

[android-developers] Re: How Does HttpURLConnection work

2010-01-18 Thread And-Rider
unfortunately time out happens in a synchronous manner. So if i send five calls the in a asynchronous manner those calls are not timing out in an asynchronous manner. I think this should probably be a bug... On Jan 18, 11:44 pm, JP wrote: > On Jan 18, 7:28 am, And-Rider wrote: > > >

[android-developers] Re: How Does HttpURLConnection work

2010-01-18 Thread And-Rider
. Then retry (I retry once, before branching into "error" > handling) > > On Jan 18, 6:55 am, And-Rider wrote: > > > Just to be more clear why is the timeout not happening in a > > Asynchronous manner...? Why is it waiting for the first call to > > timeout before

[android-developers] Re: How Does HttpURLConnection work

2010-01-18 Thread And-Rider
Just to be more clear why is the timeout not happening in a Asynchronous manner...? Why is it waiting for the first call to timeout before proceeding to the next call though i am opening two connections in two different threads...? -- You received this message because you are subscribed to the Go

[android-developers] How Does HttpURLConnection work

2010-01-18 Thread And-Rider
Hi All, I need to send asynchronous calls to the server. During network connection this works fine. How ever if i disable my LAN from Network connections android will through a socket exception after the specified timeout for that particular call. Now the issue that i face is the time out happens

[android-developers] Re: VideoView playback fails on 2.0.1? MediaPlayer warnings in logcat

2009-12-29 Thread And-Rider
There is a bug filed regarding issue... http://code.google.com/p/android/issues/detail?id=5696#makechanges On Dec 29, 2:32 pm, And-Rider wrote: > Did any one have a solution for this issue...? > > I do have the same problem with 2.0.1 > > On Dec 16, 11:19 pm, Morgane Plat wrote

[android-developers] Re: VideoView playback fails on 2.0.1? MediaPlayer warnings in logcat

2009-12-29 Thread And-Rider
Did any one have a solution for this issue...? I do have the same problem with 2.0.1 On Dec 16, 11:19 pm, Morgane Plat wrote: > Sorry I can't help you on your problem now since I don't even have videos > working with Android 2.0. > Maybe this will help though > :http://www.mail-archive.com/andr

[android-developers] Progress bar not visible with a white background in 1.6 sdk

2009-09-21 Thread And-Rider
when i ran my old application in 1.6 i noticed that the progress bar was not showing up on the screen.When i analyzed it further i found the issue.The progress bar is getting activated but its not visible since my background color is also white.When i changed the background color i was able to see

[android-developers] Change the color of ratingbar stars

2009-08-06 Thread And-Rider
Is it possible to change the color of the rating bar stars that are getting highlighted when the user tries to rate?... By default it is showing Green color indication for the stars which are selected..If i want to change the color as say "Red" what should i do?... I tried adding styles attribut

[android-developers] Re: Make a particular activity as a root activity in stack

2009-08-04 Thread And-Rider
n A, B, C after the call to startActivity(intent). > > On Aug 4, 11:55 am, And-Rider wrote: > > > can any one help me on this issue plz... > > > On Aug 4, 5:33 pm, And-Rider wrote: > > > > i have a set of activities on my stack Say A-->B-->C. when i launc

[android-developers] Re: Make a particular activity as a root activity in stack

2009-08-04 Thread And-Rider
can any one help me on this issue plz... On Aug 4, 5:33 pm, And-Rider wrote: > i have a set of activities on my stack Say A-->B-->C. when i launch > the activity named 'D' it should get fired as the root activity of my > application and all the other activities(A,B,C)

[android-developers] Make a particular activity as a root activity in stack

2009-08-04 Thread And-Rider
i have a set of activities on my stack Say A-->B-->C. when i launch the activity named 'D' it should get fired as the root activity of my application and all the other activities(A,B,C) should get cleared from my stack once Activity D is launched.Can any one tell me as how to do this --~--~-

[android-developers] Problem with listview scrolling

2009-07-29 Thread And-Rider
I have a listview in my application to which the view is loaded dynamically after populating the view i start inserting the records onto the database.But until the database insertion gets completed the list view scrolling is not smooth.Once the database population is over the scrolling is smooth.W

[android-developers] Re: Gallery View using images from file (Dynamic vs. Static images)

2009-07-03 Thread And-Rider
may be this can help you out http://learningandroid.org/tutorial/2009/02/gallery-tutorial-file-location On Jul 2, 2:06 am, Logik wrote: > The api demo for gallery uses resource id's to access the drawables in > the gallery. > > I have tried multiple ways to use images from file. My steps... > >

[android-developers] Re: Strange TabHost NullPointerException

2009-06-26 Thread And-Rider
I am also having the same problem Can anyone help us telling the possible scenarios in which this bug might occur. On Jun 25, 10:17 pm, "nEx.Software" wrote: > I get no errors when I use TrackBall click to select a tab in > TabActivity. Tested on my apps targeting each 1.1 SDK and 1.5 SD

[android-developers] Load two different views simultaneously in a screen

2009-03-05 Thread And-Rider
I want to create a single screen with two different views .And i want to refresh one view without disturbing the second view.I mean i do not want to refresh the entire screen and want to refresh only a part in a screeni am able to populate two layouts in one view but is there a way to populate

[android-developers] Re: Storing images as blob in sqlite

2009-02-27 Thread And-Rider
Thank you very much for your help.But after changing the query as per your advice i am still ending up getting the same error.. Is the way i use to convert images as byte the correct way or is there any better way to store retrieve the images...? On Feb 27, 10:06 pm, Nathan wrote: > It's not re

[android-developers] Storing images as blob in sqlite

2009-02-27 Thread And-Rider
Hi all, I am currently trying to store an image into the sqlite database as a blob and retrieve it back.I am not sure if this is the correct approach since i dint find much of sample codes related to inserting images in sqlite. //creating blob datatype db.execSQL("CREATE TABLE IF NOT

[android-developers] Querying in Sqlite

2009-02-05 Thread And-Rider
Is it possible to pass a query directly and check the values that has been inserted for a particular table in a database using the SQlite3 UI (like what we do in SQLSERVER) or should i write a program to display the values inserted for a particular table?? --~--~-~--~~~

[android-developers] Re: save image file in sqlite db

2009-01-20 Thread And-Rider
can any one help me.. is there any data type in sqlite through which i can save images directly from a particular url into sqlite available in android can some one provide sample codes... On Jan 20, 10:19 am, And-Rider wrote: > I want to save images from a particular URL into the sqlite db

[android-developers] save image file in sqlite db

2009-01-19 Thread And-Rider
I want to save images from a particular URL into the sqlite db and then display it from the database..Can anyone tell me as how i could do that --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group

[android-developers] Re: Streaming videos in Emulator

2009-01-16 Thread And-Rider
Sure,,, rtsp://stream.zoovision.com/zootoones/the_three_stooges_dinopoodi.3gp http://www.inventa.com.au/mpeg4%2056kbps176X144PAL.mpg --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post

[android-developers] Streaming videos in Emulator

2009-01-15 Thread And-Rider
Is it possible to stream videos in an android emulator?... I tried streaming an mp3 file which worked perfectly... but when i tried streaming an video file(tried 3gp,mp4) but both dint work... I am not sure if the format is supported in the emulator .. I get an error "Sorry,this video cannot be p

[android-developers] Re: Getting the phone number.................

2009-01-15 Thread And-Rider
just have a look at this video http://in.youtube.com/watch?v=I6ObTqIiYfE&feature=channel On Jan 16, 11:06 am, Pratap wrote: > Is there a way to access the phone number programatically.. --~--~-~--~~~---~--~~ You received this message because you are subsc

[android-developers] Caching-RSS feed pages using sqlite

2008-12-30 Thread And-Rider
I want to develop an application which would display articles downloaded from a RSS feed.I am comfortable with that part.But i want to cache that particular page using SQLite and store it.So next time when the user clicks on that particular page the cache data should appear first and it should get

[android-developers] Re: Change Text color in listview

2008-12-24 Thread And-Rider
Thank you very much mark the method you recommended worked.. I tried creating my own layout as you have mentioned in your post gr8 tutorials.. On Dec 22, 6:10 pm, Mark Murphy wrote: > And-Rider wrote: > > Can any one tell me as how to change the text color of items which are > >

[android-developers] Re: Change Text color in listview

2008-12-24 Thread And-Rider
thanks for your reply mark.But is it possible to change the text color in a listview directly as a property. Like when i use Textview i just mention android:textColor="#ff" do we have any properties like that for listview... On Dec 22, 6:10 pm, Mark Murphy wrote: > An

[android-developers] Change Text color in listview

2008-12-22 Thread And-Rider
Can any one tell me as how to change the text color of items which are been displayed in a listview.I was able to assign a background color for the listview but dint find any attributes to change the text color.. --~--~-~--~~~---~--~~ You received this message bec

[android-developers] Sending E-mail Programatically from Android Emulator

2008-12-10 Thread And-Rider
Hi all, Can anyone help me as how to send an Email programatically from an android emulator.I got a sample code from this website.. http://davanum.wordpress.com/2007/12/22/android-send-email-via-gmail-actually-via-smtp/ But the code doesn't seem to be working in the new SDK I later tried

[android-developers] Re: JavaMail and Android - Little excursus

2008-12-04 Thread And-Rider
i am not able to download the *.jar file..can you please post it again On Oct 9, 4:12 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > Due to the huge number of people interested on using JavaMail API in > Android, I'm publishing this "tutorial". > There are some things to keep in mind: >

[android-developers] Re: creating an address book

2008-10-16 Thread And-Rider
Try out this link http://pcquest.ciol.com/content/Developer/2008/108040502.asp On Oct 7, 10:33 am, dilu <[EMAIL PROTECTED]> wrote: > Hi > I am new to this platform.I want to create a simple application like > adding a name and phone number to contact address.How to start writing > code for this?