1
vote
1answer
2k views
Using ItemizedOverlay and OverlayItem In Android Beta 0.9
Has anyone managed to use ItemizedOverlays in Android Beta 0.9? I can't get it to work, but I'm not sure if I've done something wrong or if this functionality isn't yet available.
I've bee …
32
votes
Android Development
I haven't done any Android development in Linux, so my answer is based on my Windows experience, so to answer your first question last, yes. It can be done in Windows.
From what I've read / …
11
votes
How do I save an Android application’s state?
You need to override onSaveInstanceState(Bundle savedInstanceState) and write the application state values you want to change to the Bundle parameter like this:
@Overri …
2
votes
Android API for detecting new media from inbuilt camera & mic
There's a special broadcast Intent that should get called every time an application writes anything new to the Media Store:
Intent.ACTION_MEDIA_SCANNER_SCAN_FILE
T …
2
votes
Placing Zoom Controls in a MapView
The trick here is to place another Layout container where you want to put the ZoomControls and then insert the ZoomControls into that.
The real trick is to use the RelativeLayout …
4
votes
What’s the difference between fill_parent and wrap_content?
Either attribute can be applied to View's (visual control) horizontal or vertical size. It's used to set a View or Layouts size based on either it's contents or the size of it's parent layout rathe …
8
votes
Android HTTP Connection
As far as configuration goes, the only setting you should need to access the Internet from your application is the INTERNET permission, enabled by adding the following line outside the App …
4
votes
Android: Capturing the return of an activity.
I'll focus on answering how to resolve your workround so that it behaves as you want.
To capture actions performed on one Activity within another requires three steps.
Launch the se …
8
votes
Activity restart on rotation Android
Using the Application Class
Depending on what you're doing in your initialization you could consider creating a new class that extends Application and moving y …
1
vote
Best way to show a edit text over screen?
The easiest solution to your problem is to display your EditText within a separate dialog themed Activity that you launch from within your main (portrait-fixed) Activity. …
5
votes
Android: Reverse geocoding - getFromLocation
It looks like there's two things happening here.
1) You've missed the new keyword from before calling the constructor.
2) The parameter you're passing in to the Geocode …
7
votes
Android Activity with no GUI
Your best bet would seem to be using a BroadcastReceiver. You can create a new BroadcastReceiver that listens for the Intent to trigger your notification and start your service like th …
2
votes
How to remove a contact programmatically in android
Do you have the appropriate permissions declared in your manifest?
You'll need the android.permission.READ_CONTACTS and android.permission.WRITE_CONTACTS uses-per …
5
votes
How do I display the current value of an Android Preference in the Preference summary?
Unfortunately there doesn't seem to be a simple, automated way of doing this (you'll notice that very few of the 'native' preferences do this). That said, I'm sure it's a pretty common requirement, …
6
votes
Access pictures from Pictures app in my android app
You can use startActivityForResult, passing in an Intent that describes an action you want completed and and data source to perform the action on.
Luckily for you, Android incl …
