[android-developers] DHCP options

2013-06-26 Thread Iroid
Hi, I have set/configure some additional DHCP options like 120, 60 and some more. Could anyone help me if it is possible in Android using SDK? OR Do I need to write a system application and change in dhcpcd? Thanks in advance -- -- You received

[android-developers] Native SIP support

2013-01-14 Thread Iroid
Hello Everyone, We have to develop a SIP based application. major features include: 1. Audio/Video call 2. Audio/Video conference Locally hosted 3. Supplementary services : hold/resume/ call forward/ call waiting/call transfer etc.

[android-developers] Android Account Manager Caching

2012-10-30 Thread Iroid
Hello Everyone, I have to create a custom account in Android that will be integrated with Account and Sync framework. By default Account Manager caches the Auth token and returns the same for all request. Is there any way to

[android-developers] Custom themes for native application

2010-08-17 Thread Iroid
Hello Everyone, Is it possible to change the theme of a native application without rebuilding it? basically I want to change the theme of native applications for example messaging by another application so looking for options. Android documentation

[android-developers] DRM support for Ringtones on Android

2010-02-15 Thread Iroid
Hi, I am trying to create an application that downloads ringtones to the phone and I am trying to support Forward Locking on the downloaded ringtones. Currently I am saving the contents as .mp3 on externalDirectory.Reading forums and other articles online, it seems like android does have DRM 1.0

[android-developers] Re: OutOfMemory - while Change orientation

2010-01-26 Thread Iroid
is getting started. Thanks once again. On Jan 25, 4:57 pm, fadden fad...@android.com wrote: On Jan 25, 1:16 pm, Iroid irfan.f.k...@gmail.com wrote: IE/dalvikvm-heap(  806): 570240-byte external allocation too large for this process. E/        (  806): VM won't let us allocate 570240 bytes D

[android-developers] Re: OutOfMemory - while Change orientation

2010-01-26 Thread Iroid
I got it working ..thanks... On Jan 26, 10:57 am, Iroid irfan.f.k...@gmail.com wrote: Hello Fadden,         Thanks alot for the response. Now at last I know what is causing the crash. But I am not able to run the python script (qclog.py) in my dev enviornement. Could you please let me know

[android-developers] OutOfMemory

2010-01-25 Thread Iroid
Hello All, I am facing an Out Of Memory Exception while playing with the application for sometime. I looked in to HeapDump using MAT, and also monitored the heap through DDMS. But HeapDump looks good to me and DDMS heap size is well in limit. Still I am getting this Exception. This morning when

[android-developers] Application Crash..:(

2010-01-20 Thread Iroid
Hello Everyone, This is another Android programming puzzle I am having hard time to solve. I am getting Out of Memory Exception though I see more then 2 MB available memory for the application. I do not what is going wrong.. Could anyone please help me? Here

[android-developers] Re: Application Crash..:(

2010-01-20 Thread Iroid
one more point I missed: I get this very often when I change the orientation and switch the activities quickly. On Jan 20, 4:11 pm, Iroid irfan.f.k...@gmail.com wrote: Hello Everyone,                  This is another Android programming puzzle I am having hard time to solve

[android-developers] App Died Signal 11

2010-01-18 Thread Iroid
Hello Everyone, I am developing one application which fetches the list of data/images from the server and shows on to the device. When I change the orientation, press Back button after doing it for 4-5 times app gets crashed. I am handling orientation change within activity itself

[android-developers] Re: App Died Signal 11

2010-01-18 Thread Iroid
Thanks for quick reply. It is helpful, but I do not have the build enviornment. I am working with SDK only. Could you please help me with SDK how can we figure out? Thanks once again On Jan 18, 12:19 pm, guiha...@gmail.com guiha...@gmail.com wrote: I just got this problem and found the answer.

[android-developers] Re: App Died Signal 11

2010-01-18 Thread Iroid
Okay Great, I can fetch the libskia from Droid and share with you. would it work? Thanks alot for your help. On Jan 18, 2:24 pm, guiha...@gmail.com guiha...@gmail.com wrote: Ah... indeed. now i understand the problem. You're a Java developer... I think that someone could tell us how to get

[android-developers] List with image items

2010-01-05 Thread Iroid
Hello all, I have a list that shows items containing text and image. I have to download the images from the remote server and show as list item. things are working fine. The real problem is my list could have around 100 list items and each item has image downloaded from remote server. It is giving

[android-developers] Re: How can I add a button to a linear layout 'right justified'

2010-01-05 Thread Iroid
set the layout weight of TextView to 1. TextView android:id=@+id/atitle android:singleLine=true android:layout_width=fill_parent android:layout_height=wrap_content android:layout_weight= 1 / /LinearLayout On

[android-developers] HttpURLConnection - getResponseCode() Hangs

2009-10-08 Thread Iroid
Hello Everyone, I am trying one scenario as follows: 1. Make the phone to Airplane mode 2. Remove from the Airplane mode 3. Receive Intent of dataconnection availblity 4. Issue a HTTP request 5. Read response code and 6. Process the response. This works fine for the first time. When I repeat

[android-developers] Text Alignment

2009-09-17 Thread Iroid
Hello All, I have to use EditText to show some text and the part of text has to be LEFT aligned and rest RIGHT aligned. Is there any way other then extending EditText? I looked for StringSpan option but could not get the way I want. Is there any pointers? Thanks

[android-developers] making sdcard folder private to the app

2009-09-14 Thread Iroid
Hello All, I want to make a sdcard folder private to my application same the way we have /data/data/app directory. and prevent the access of that folder from other apps. How could I achieve this in android? Thanks Irfan --~--~-~--~~~---~--~~ You received this

[android-developers] Showing force close / report dialog

2009-09-08 Thread Iroid
Hello all, In my current application I want to show a dialog having Force Close and Report option at the time of Unhandled Exception. Could anyone please let me know how to have this dialog? right now if I change defaultExceptionHandler to mine It gets control but I am not able to show any

[android-developers] Sending Email

2009-09-08 Thread Iroid
Hello All, Can I send an email without invoking any activity (with Send/SendTo action)? Just compose a mail and send to recipient from my application. Appreciate your response. Thanks Irfan --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] Re: Showing force close / report dialog

2009-09-08 Thread Iroid
Thanks Mark, I used handler, which did not work for me. Let me try with runOnUiThread(). On Sep 8, 3:04 pm, Mark Murphy mmur...@commonsware.com wrote: Iroid wrote: Hello all, In my current application I want to show a dialog having Force Close and Report option at the time of Unhandled

[android-developers] Re: Showing force close / report dialog

2009-09-08 Thread Iroid
force close the application? Please help. Thanks Irfan On Sep 8, 3:11 pm, Iroid irfan.f.k...@gmail.com wrote: Thanks Mark, I used handler, which did not work for me. Let me try with runOnUiThread(). On Sep 8, 3:04 pm, Mark Murphy mmur...@commonsware.com wrote: Iroid wrote: Hello

[android-developers] Re: how to arrange for onNewIntent() ?

2009-08-19 Thread Iroid
What if I do not want to call onCreate each time my orientation gets change? I am setting the singleTop mode for the activity in manifest file. override onNewIntent(), But still each time onCreate of that activity is getting called. Please help. On Jul 29, 8:07 pm, Dianne Hackborn

[android-developers] Re: code to uninstall applications

2009-08-11 Thread Iroid
Hello all, I have a to show a message to user before uninstall of my application happens. I could of think of two options: 1. Receiving the notification of Uninstall by intent receiver with action: Action.Package_Removed . This is not working as Framework first uninstall the application and

[android-developers] Re: code to uninstall applications

2009-08-11 Thread Iroid
Thanks for quick response. On Aug 11, 1:18 pm, Dianne Hackborn hack...@android.com wrote: Hi, Android does not currently provide any way for an application to run when it is being uninstalled. On Tue, Aug 11, 2009 at 9:19 AM, Iroid irfan.f.k...@gmail.com wrote: Hello all, I have

[android-developers] SDK 1.5 WebView Problem

2009-06-10 Thread Iroid
Hello, I have been working on SDK 1.0 and developed a small browser application which works fine on sdk 1.0. While migrating to sdk 1.5 it shows some weird behavior. After loading 10-15 websites, it stops working. When I see logs it says - I/InetAddress( 933): Unknown host URL (e.g.

[android-developers] How to use TextAppearence in Code without styleable?

2009-04-03 Thread Iroid
Hello All, I am trying to migrate from SDK 1.0 to SDK 1.1 for this i have to remove all the references of R.Styleable. from my code. While working on this - I am facing two problems: Problem 1: I have created one attrs.xml and declaring attributes there which intern referring to android

[android-developers] How to refer TextAppearence

2009-04-02 Thread Iroid
Hello All, I am trying to migrate from SDK 1.0 to SDK 1.1 for this i have to remove all the references of R.Styleable. from my code. While working on this - I am facing two problems: Problem 1: I have created one attrs.xml and declaring attributes there which intern referring to android

[android-developers] test

2009-04-02 Thread Iroid
s --~--~-~--~~~---~--~~ 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 this group, send email to

[android-developers] How to do JUnit testing for database access?

2008-10-30 Thread Iroid
Hello Everyone, I have to test a class which is heavily accessing database. Now to access database I needed context this was done by passing current activity reference. In JUnit I couldn't find any way to create activity and pass in to those methods. I found ActivityUnitTestCase T in android

[android-developers] Re: Available space in device?

2008-10-29 Thread Iroid
Thanks a lot for response!!! On Oct 28, 11:29 pm, Peli [EMAIL PROTECTED] wrote: Did anyone mention android.os.StatFs already? :-) Peli On Oct 28, 5:27 pm, Iroid [EMAIL PROTECTED] wrote: Hello Everyone, How can I find the available space in the device? I could not find any API

[android-developers] Available space in device?

2008-10-28 Thread Iroid
Hello Everyone, How can I find the available space in the device? I could not find any API for the same :( I would appreciate your help !! Thanks --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Remote MP4 video in 0.9 SDK

2008-09-25 Thread Iroid
I am trying to run a remote progressive downloadable mp4 file using VideoView. It is giving MediaPlayer error -1 and VideoView error -1. I do not know what does it mean? Could any one help please? Thanks On Sep 20, 9:36 am, Dan Walmsley [EMAIL PROTECTED] wrote: Any idea when RTSP will be

[android-developers] VideoPlayer Fast Forward/Rewind

2008-09-04 Thread Iroid
Hello all, I am developing a VideoPlayer based on MediaPlayer provided by Android. In this video player, I have to implement Fast Forward(FF) and Fast Rewind(FR) too apart from other basic play/pause/seek functionality. I could not find any Direct(fastForward(speed)/fastRewind(speed)) or