[android-developers] Re: Video streaming from Android

2010-08-04 Thread Ivar Refsdal
encoders are used, because of creation and modification time. Videocodec is H.263 and audio codec is AMR. On 3 ago, 09:12, RFuente fuente.mu...@gmail.com wrote: That doesn't seem easy but it is an idea. I'll try and see what I get. Thank you very much Ivar. On 28 jul, 14:21

[android-developers] Re: Supplying a different background drawable for a dialog?

2010-03-11 Thread ivar
While changing the color of the panel, did you set the alpha value to FF? 0 gives you full transparency and FF gives you total opacity. Hope this helps. Ivar On Mar 11, 8:37 pm, Mark Wyszomierski mar...@gmail.com wrote: Hi, I'm trying to supply my own background drawable for a dialog

[android-developers] Re: Using ContentResolver to add a contact in the mobile

2010-02-18 Thread ivar
Try this. ContentValues values = new ContentValues(); values.put(Contacts.People.NAME, Dummy Contact+i); Uri uri = Contacts.People.createPersonInMyContactsGroup(getContentResolver(), values); Uri

[android-developers] Re: Store contact name in emulator phonebook.

2010-02-18 Thread ivar
Try this: ContentValues values = new ContentValues(); values.put(Contacts.People.NAME, Dummy Contact+i); Uri uri = Contacts.People.createPersonInMyContactsGroup(getContentResolver(), values); Uri

[android-developers] Re: Retrieving data from portrait to landscape

2010-02-18 Thread ivar
you have to save the necessary data as part of the bundle in the method, onSaveInstanceState and onCreate(bundle), you should if there is any data in the bundle. if there is get the data from the bundle and use that data. -Ravi On Feb 18, 1:29 pm, sid wakeupsi...@gmail.com wrote: Hi All, For