[android-beginners] Re: Map API Demo

2010-06-15 Thread Rahul Garg
yes I did that. On Jun 15, 10:03 am, Saket Srivastav saketsrivasta...@gmail.com wrote: did you generate your google map api and provided the neccessary permissions in your manifest file?   Regards Saket Srivastav On Mon, Jun 14, 2010 at 5:48 AM, Rahul Garg rahul.lnm...@gmail.com wrote

[android-beginners] Re: Map API Demo

2010-06-14 Thread Rahul Garg
Thanks saket, I tried it, but still I am unable to show the map. it is showing following error Checkin failed : https://android.clients.google.com/checkin (request #0) org.apache.http.conn.ConnectTimeoutException : Connect to / 72.14.254.100:443 timed out regards Rahul Garg On Jun 14, 10:56

[android-beginners] Map API Demo

2010-06-13 Thread Rahul Garg
Hi, Can someone provide me some link or text for Map API Demo ? Regards Rahul Garg -- You received this message because you are subscribed to the Google Groups Android Beginners group. NEW! Try asking and tagging your question on Stack Overflow at http://stackoverflow.com/questions/tagged

[android-beginners] Re: Cursor position to the start of the text

2010-06-13 Thread Rahul Garg
Hi, I think it will be good if you can put code snippet, as in my case it is working fine. Best Wishes Rahul Garg On Jun 9, 3:21 pm, skalluraya skallur...@gmail.com wrote: Hi All,    I have a small problem. In my activity i have a edittext and button. Clicking on button I am changing

[android-beginners] Re: Setting theme for an activity

2010-06-08 Thread Rahul Garg
Hi Sudesh, in your themes.xml file, instead of android.windowBackground, use android:background it will work fine. Best Wishes Rahul Garg On Jun 7, 9:55 am, Sudeep Jha sudeep.neti...@gmail.com wrote: Hi All, This is my  themes.xml file resources style name=Theme.Blue parent

[android-beginners] Re: MediaController in MediaPlayer

2010-06-08 Thread Rahul Garg
); video.setMediaController(mcontrol); video.setVideoURI(videouri); video.start(); } } Best Wishes Rahul Garg On Jun 4, 12:59 am, Abhi abhishek.r.sha...@gmail.com wrote: Hello, I am using MediaPlayer to build a Video player for playing local video files. However, I don't know

[android-beginners] Phonefactory.getDefault Phone must be called from looper thread

2010-05-18 Thread Rahul Garg
Hi, I am getting the following Runtime Exception when I am trying to run my code : Phonefactory.getDefaultPhone must be called from looper thread The line in which it is showing the error is Phone phone = Phonefactory.getDefaultPhone(); I dont know what is the problem with this line.help me

[android-beginners] Delete Unread SMS

2010-05-17 Thread Rahul Garg
Hi, I am trying to read the unread message and want to delete that messaging after reading. I am able to read that message but unable to delete it .and Is it any way to delete that message and I also dont want notification for this received message. -- You received this message because

[android-beginners] Accessing Unread SMS

2010-05-17 Thread Rahul Garg
Hi, I am working to develop an SMS application in which I want to receive the incoming sms before it goes to Broadcast Receiver. I dont want to store it in my inbox as well as I dont want any notification for it. Please help me. -- You received this message because you are subscribed to

[android-beginners] Re: Accessing Unread SMS

2010-05-17 Thread Rahul Garg
Hey victor, I dont want to use any tool, so if you know any programming way to do this let me know .thanks anyway. On May 17, 6:24 pm, victor perez victorosin...@gmail.com wrote: take a loot at chompsms they have the user disable notification On May 17, 2010 4:01 AM, Rahul Garg rahul.lnm

[android-beginners] Draw outside the onDraw() function

2010-05-13 Thread Rahul Garg
Hi , I want to change the particular portion of my canvas by clicking the menu button. but as onKeyDown() function is called after the onDraw() function, I am unable to modify my canvas. what should i do? -- You received this message because you are subscribed to the Google Groups

[android-beginners] Re: Draw outside the onDraw() function

2010-05-13 Thread Rahul Garg
No that is also not working . On May 13, 8:39 pm, TreKing treking...@gmail.com wrote: On Thu, May 13, 2010 at 6:36 AM, Rahul Garg rahul.lnm...@gmail.com wrote: what should i do? Can't you call invalidate or postInvalidate or something to trigger another draw call