[android-developers] IllegalStateException When Committing FragmentTransaction

2013-02-21 Thread hwrdprkns
Greetings, I wonder, what is the most efficient way to figure out if I should commit a FragmentTransaction? The FragmentManager/FragmentTransaction classes don't have good methods to check if we are able to commit a FragmentTransaction. Furthermore, since I always get the exception

[android-developers] Find location of status bar.

2012-09-12 Thread hwrdprkns
Greetings, I'm using DecorView to insert my own sliding menu (like Facebook, Spotify, etc) but I'm wondering if its possible to tell where the status bar is, as I need to offset my view appropriately. For example, on tablets the status bar is *usually * at the bottom, except on the Nexus 7

[android-developers] Re: Find location of status bar.

2012-09-12 Thread hwrdprkns
space and not overlap any other view/widget? If it does please could you explain in more detail what you have done. On Wednesday, September 12, 2012 12:25:53 PM UTC+1, hwrdprkns wrote: Greetings, I'm using DecorView to insert my own sliding menu (like Facebook, Spotify, etc) but I'm

[android-developers] Re: Find location of status bar.

2012-09-12 Thread hwrdprkns
could you explain in more detail what you have done. On Wednesday, September 12, 2012 12:25:53 PM UTC+1, hwrdprkns wrote: Greetings, I'm using DecorView to insert my own sliding menu (like Facebook, Spotify, etc) but I'm wondering if its possible to tell where the status bar is, as I

[android-developers] Re: Find location of status bar.

2012-09-12 Thread hwrdprkns
-7, hwrdprkns wrote: Greetings, I'm using DecorView to insert my own sliding menu (like Facebook, Spotify, etc) but I'm wondering if its possible to tell where the status bar is, as I need to offset my view appropriately. For example, on tablets the status bar is *usually * at the bottom

Re: [android-developers] Get all AVD's to use the same SD card

2012-06-22 Thread hwrdprkns
Yep, you are totally right. Thanks for responding. I was trying to look for the SD Card in a hidden folder . On Wednesday, June 20, 2012 11:43:55 PM UTC-7, TreKing wrote: On Wed, Jun 20, 2012 at 6:23 PM, hwrdprkns taylo...@gmail.com wrote: I was wondering if it was possible to get all of my

[android-developers] Get all AVD's to use the same SD card

2012-06-20 Thread hwrdprkns
Hello, I was wondering if it was possible to get all of my AVD devices to use the same SD card. I think this would make it easier to test on different device configurations and such. Has anyone successfully completed this before or know how it can be done? Cheers! -- You received this

[android-developers] Re: Text view over image gallery

2011-06-17 Thread hwrdprkns
If you use a FrameLayout, the views are layered by the time they are defined. For example, if you have a FrameLayout with a TextView and an ImageView, the one that is defined FIRST will be on the bottom, and the one that is defined second would be on top. Take a look at the developer docs for

[android-developers] Title Bar with Custom Progress Android

2010-08-21 Thread hwrdprkns
Hello, I am trying to implement my custom title bar with progress in android. I can get the application to show my custom title bar -- but showing the progress in my custom title bar doesn't work very well. Is there a way I can tell android to use the progress bar in my custom title rather than

[android-developers] Re: Change Update Time of MyLocationOverlay

2010-08-19 Thread hwrdprkns
the dot at the center of the screen. This should happen automatically. You are right it does. On Aug 19, 10:23 am, TreKing treking...@gmail.com wrote: On Wed, Aug 18, 2010 at 6:51 PM, hwrdprkns taylo...@gmail.com wrote: 1. Change the location update times to whatever I want. Idea: Use a timer

[android-developers] Re: Which Android service path to choose for implementing a large upload?

2010-08-19 Thread hwrdprkns
Thanks -- I was able to use IntentService and it works well. Although it hangs my program while upload. I'm not sure why it does since it is supposed to be uploading in a separate thread -- but I think I'll do some searching around to see what I can do. On Jul 19, 3:58 am, Mark Murphy

[android-developers] Change Update Time of MyLocationOverlay

2010-08-18 Thread hwrdprkns
Hello, I am trying to see if anyone knows if it is possible to change the update time of MyLocationOverlay(http://bit.ly/dBIVdj). I have tried subclassing MyLocationOverlay and implementing my own location manager -- but when that happens I do not see the overlay on the map. I would try

[android-developers] Which Android service path to choose for implementing a large upload?

2010-07-17 Thread hwrdprkns
I am trying to implement a RESTful API in which I have to upload files that are relatively large for a mobile platform. The upload could take anywhere from 30 seconds to 5 minutes. I would like my application to be completely usable while the upload takes place. I've been doing some research and

[android-developers] Simple mapController.animateTo(point) problem.

2010-03-24 Thread hwrdprkns
Hello, I am getting a force close whenever I try to run this application. I am trying to do something very simple by just animating the map to show a set of coordinate that I am giving it. This is my pastebin: http://pastebin.com/embed_js.php?i=8Qjsurck Any help on this matter would be greatly

[android-developers] requestLocationUpdates Problems

2010-03-24 Thread hwrdprkns
Hi Guys, I just have a quick question about location updates. I don't know why but it keeps saying I have an error on line 47, where I make the call to start requesting location updates. I don't know why but whenever i try to run the program on my AVD it says that I have a NullPointerException

[android-developers] Re: Simple mapController.animateTo(point) problem.

2010-03-24 Thread hwrdprkns
Ok, I think I fixed this, sorry. On Mar 23, 2:29 pm, hwrdprkns taylo...@gmail.com wrote: Hello, I am getting a force close whenever I try to run this application. I am trying to do something very simple by just animating the map to show a set of coordinate that I am giving it. This is my