Ok I have an app that I am working on that has is a multiscreen app.On the main page it has a spinner. All of the information for the spinner is stored in the strings.xml file.

  1. When that particular building is selected I would like to list its address on that screen Attached is a screen shot of what the app looks like so far enter image description here
link|improve this question

75% accept rate
1  
This question is a bit too broad. You should create a single one for being able to click on a part of the image and map that to a specific building, then take it from there. – dmon Nov 14 '11 at 0:31
Ok how would I display an address if a building was selected from the spinner – BigCAT41 Nov 14 '11 at 0:54
The picture listed is jsut a map of all of the buildings..I would liek it to be displayed in google maps btw – BigCAT41 Nov 14 '11 at 0:56
feedback

1 Answer

From what I understand in your question, you want to display an address from a click on a map or show a building's address from a spinner.

When that particular building is selected I would like to list its address on that screen

If you are using a MapView :

  • Use the onTap() or onTouch() to get a point where it has been tapped. Use this GeoPoint to get an address using Geocoding api.
  • Here is an example of the same.

how would I display an address if a building was selected from the spinner

You can use a similar technique, map all the buildings in the campus to lat, lon coordinates. Then use the Geocoding APIs to get an address based on the spinner item selected. Use the animateTo() API to animate the map to a given point

link|improve this answer
never mind my question is is it possible to have the map view displayed on a seperate screen and linked to the spinner is that really involved? – BigCAT41 Nov 14 '11 at 2:40
You can have the MapView and the spinner in the same screen, like the screen shot. If you keep the spinner in a different activity, you'll have to pass values back and forth using intents. – Reno Nov 14 '11 at 2:49
ok makes sense. That map is just a JPEG from my schools website its not a map view or anything I thought I was going to include that but I guess I wont. – BigCAT41 Nov 14 '11 at 2:55
Oh if you are using an ImageView, you have to add an onTouchListener. Then based on the touch coordinates x, y you will have to map them to rectangles. – Reno Nov 14 '11 at 3:04
okk I am jsut going to do it in a map view so when the building is selected on the spinner it will dispaly it on the map using mapview and then also have the address listed below – BigCAT41 Nov 14 '11 at 3:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.