[android-developers] How to set the color of listView unused area in 2.3.3

2011-07-24 Thread dipu
area at the bottom of the listview gets a default gray / white color that I cannot change. Thanks, Dipu -- 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

[android-developers] Re: Career as an Andoid developer. Is there any point?

2011-05-26 Thread dipu
Android has been a great platform for developing apps as a hobby. It is far better than any other Java based mobile platform that I had tried. I wish java-api-first is not the case in the future. Java AWT/ Swing has been basically a failure in GUI(considering all the time a effort went into

[android-developers] Re: Career as an Andoid developer. Is there any point?

2011-05-26 Thread dipu
...@android.com wrote: On Thu, May 26, 2011 at 1:46 PM, dipu contac...@gmail.com wrote: Developing apps for android is fun. I just do not want to put a nail on every null to avoid force close. Now even an ardent Agile fan would call me a bad programmer. That is where I see religion (or cult

[android-developers] How should I invoke InstalledAppDetails from a program?

2011-02-12 Thread dipu
I am trying to invoke the InstalledAppDetails with following code. I get error message that says activity not found. How should I invoke InstalledAppDetails? Intent intent = Intent.parseUri(dat=package:com.example.android.jetboy cmp=com.android.settings/.applications.InstalledAppDetails, 0);

[android-developers] Demo vs Paid and that 15 minutes of refund policy

2010-12-24 Thread dipu
Now that the market refund policy has changed to 15 minutes, it has become more important to have a demo version for every paid app. What are the best practices to maintain a demo version for a paid app, specially when the development is done in Eclipse. I know that using ant build file lot of

[android-developers] Re: How to figure out who is causing GC on my device?

2010-11-01 Thread dipu
I have put hotmail and exchange email check frequency to never and it seems alright now. I will try enabling them later. Thanks, Dipu On Oct 31, 6:11 pm, Miguel Morales therevolti...@gmail.com wrote: Try putting your phone in airplane mode and see what happens. On Oct 31, 2010 5:39 PM, dipu

[android-developers] Re: How to figure out who is causing GC on my device?

2010-10-31 Thread dipu
, dipu пишет: I am getting GC on my device (moto original Droid with 2.2) continuously, even when I am not using it for a while. How can I figure out which application is causing such continuous GC. D/dalvikvm( 1344): GC_FOR_MALLOC freed 9881 objects / 527000 bytes in 57ms D

[android-developers] How to figure out who is causing GC on my device?

2010-10-28 Thread dipu
objects / 138024 bytes in 106ms Thanks, Dipu -- 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+unsubscr

[android-developers] negative x co-ordinate on swipe to the left

2010-09-17 Thread dipu
I have a list view with list item that has one CheckBox and two TextViews. I have set on touch listener to each of these widgets. Now when I do swipe to the right the x co-ordinates are recorded correctly by the onTouch event listener. When I do swipe to the left it shows negative value for x

[android-developers] On a list view item onTouch event x co-ordinate is negative on swipe to left

2010-09-09 Thread dipu
I have a list view with list item that has one CheckBox and two TextViews. I have set on touch listener to each of these widgets. Now when I do swipe to right the x co-ordinates are recorded correctly by the onTouch event listener. When I do swipe to left it shows negative value for x co-ordinate.

[android-developers] Re: LiveFolders.ICON_BITMAP

2010-08-06 Thread dipu
+ AS + LiveFolders.ICON_BITMAP); Thanks, Dipu On Jul 8, 5:54 pm, Harry Ugol harry.u...@gmail.com wrote: We're finding the same problem as the report quoted below.  Briefly, we've a bitmap we want to show in aLiveFolderrow.  We have the object in memory as a Bitmap.  It's not stored as a blob

[android-developers] long process of automatic configuration after installation

2010-07-12 Thread dipu
any such issues with my Droid and emulators. I am thinking of using Service class. However I feel like it is wasteful to register a service for just one time use. Thanks, Dipu -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: IP infringements on the Market

2010-07-12 Thread dipu
in this forum tell me some general guidelines. Thanks, Dipu On Jul 10, 3:10 am, michael michael.d.peder...@googlemail.com wrote: Hi folks, I thought I would ask other developers for their opinions on the large number of apps on the market which seem to infringe on third-party intellectual

[android-developers] Re: Save file to sd card?

2010-04-22 Thread dipu
sure that you set user permission for writing into the file in your manifest file. Other important thing is obtain the root of the /sdcard using API calls and do not hard code it. --dipu On Apr 22, 11:03 am, Tommy droi...@gmail.com wrote: Hi, I am trying to find the best way to save files

[android-developers] Re: LiveFolders Cursor-returned Intent not working

2010-04-20 Thread dipu
Hope you tried this http://developer.android.com/intl/de/resources/articles/live-folders.html. At the bottom of the page you will see a link to the sample code. --dipu -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group

[android-developers] Custom LiveFolders

2010-04-20 Thread dipu
Is there a way to customize the android.provider.LiveFolders for display purposes? For example I would like to show rounded border, size the folder(height and width) according to the content, etc. -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] finishPackage() vs restartPackage()

2010-03-22 Thread dipu
such apps. Specially at 6 in the morning when I try to stop that annoying rooster alarm :) restartPackage() issues death notification. Most of the time I do not want to do that. I would like to simply close(finish) a task normally. Thanks, dipu -- You received this message because you

[android-developers] Re: Restarting an activity within a tab (TabActivity)

2010-03-17 Thread dipu
I also have not found any way to RESTART an activity. For tab activity what I do is reload the widgets at onResume() call. Thanks, On Mar 13, 3:21 pm, Mark Wyszomierski mar...@gmail.com wrote: Hi, I have a TabActivity, each tab holds an activity. At some point I'd like to 'refresh' the tabs.