andbook!.pdf - Learning Android Get an anddev.org - Android-Shirt Back to index
anddev.org Header Logo
FAQ Search Top rated articles Browse Feeds anddev.org - Authors Contact Details Register Log in

AndNav! - Android Map-Routing-System!

Goto page Previous  1, 2, 3, 4, 5, 6  Next
 
       anddev.org - Android Development Community | Android Tutorials | Index -> Promote your Android Application
Author Message
plusminus
Site Admin
Site Admin


Joined: 14 Nov 2007
Posts: 2660
Location: College Park, MD

PostPosted: Wed Feb 13, 2008 1:17 pm    Post subject: Reply with quote

Hello Jesmiatka,

Jesmiatka wrote:
I see you implemented your own keyboards in your application. Can I ask why? Do you think touchscreen phones (w/o keyboard) don't get the ability to type text in Android with a standard integrated keyboard or something?


Yes I know, but:
a.) Up to now there is no such functionality (sw-keyboard) within Android Sad
b.) I though that some phones could have relatively small hw-keys and when you have docked your device to you car front window hw-keys are probably harder to press than using the touch-screen.
c.) The Screens looked so damn empty without Laughing

Thx for the feedback Smile

Regards,
plusminus

_________________
Download my apps Idea
Please remember, that this board is give & take Smile


| Android Development Community / Tutorials
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Jesmiatka
Senior Developer
Senior Developer


Joined: 04 Feb 2008
Posts: 164
Location: Netherlands

PostPosted: Wed Feb 13, 2008 1:20 pm    Post subject: Reply with quote

plusminus wrote:

b.) I though that some phones could have relatively small hw-keys and when you have docked your device to you car front window hw-keys are probably harder to press than using the touch-screen.
c.) The Screens looked so damn empty without Laughing


b) is actually a real good point!
and c) made me laugh a little Wink

but I reckon you application is gonna be good, looks like you know what your doing Wink

Goodluck!
Back to top
View user's profile Send private message
plusminus
Site Admin
Site Admin


Joined: 14 Nov 2007
Posts: 2660
Location: College Park, MD

PostPosted: Thu Feb 14, 2008 11:59 am    Post subject: Reply with quote

And another one.



I'll add some "POI"-Search(Points of Interest) soon.

Unfortunately the new SDK is making a few problems with Bundles Sad
Arrow http://groups.google.com/group/android-developers/t/b7b39144518075d9

Regards,
plusminus

_________________
Download my apps Idea
Please remember, that this board is give & take Smile


| Android Development Community / Tutorials
Back to top
View user's profile Send private message Send e-mail Visit poster's website
res
Senior Developer
Senior Developer


Joined: 20 Nov 2007
Posts: 147
Location: United States

PostPosted: Thu Feb 14, 2008 7:50 pm    Post subject: Reply with quote

Is that human image (yellow body, white head) the same one as used on google maps? How did you find the image, I have no idea what to look for when trying to locate it.
Back to top
View user's profile Send private message
plusminus
Site Admin
Site Admin


Joined: 14 Nov 2007
Posts: 2660
Location: College Park, MD

PostPosted: Fri Feb 15, 2008 11:09 am    Post subject: Reply with quote

Hello res,

i found it on the net, altered the color, shortened one pixel added shadow, transparency and the X below.
Image is attached. Smile

Regards,
plusminus



person_32.png
 Description:
Image of a small pixel-person
 Filesize:  1.04 KB
 Viewed:  6769 Time(s)

person_32.png



_________________
Download my apps Idea
Please remember, that this board is give & take Smile


| Android Development Community / Tutorials
Back to top
View user's profile Send private message Send e-mail Visit poster's website
plusminus
Site Admin
Site Admin


Joined: 14 Nov 2007
Posts: 2660
Location: College Park, MD

PostPosted: Mon Feb 25, 2008 6:53 pm    Post subject: Reply with quote

Its getting hot in here...
The mock-gps data is no following the planned route Wink Exclamation


Anyone knows whether I can release any sources or previews when I plan to submit to the Android Challenge Question

All the numbers (km and time) are static, expect the to be live ~tomorrow.

Regards,
plusminus

_________________
Download my apps Idea
Please remember, that this board is give & take Smile


| Android Development Community / Tutorials
Back to top
View user's profile Send private message Send e-mail Visit poster's website
agent00
Junior Developer
Junior Developer


Joined: 18 Jan 2008
Posts: 12

PostPosted: Mon Feb 25, 2008 7:45 pm    Post subject: Reply with quote

Hi plusminus,

Can you tell me how you done the two zoom buttons. Is it an overlay ? Is it clickable ? I'm very interessed to know how you made this !!!

thanks,

regards,
agent00
Back to top
View user's profile Send private message
plusminus
Site Admin
Site Admin


Joined: 14 Nov 2007
Posts: 2660
Location: College Park, MD

PostPosted: Mon Feb 25, 2008 8:38 pm    Post subject: Reply with quote

Hello agent00,

that are two ImageViews (clickable, just standard setOnClickListener-procedure) over the MapView.
The over is accomplished using a RelativeLayout:

XML-Code is ~:

XML:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="fill_parent"
     android:layout_height="fill_parent">

     <view class="com.google.android.maps.MapView"
          android:id="@+id/map_map"
          android:layout_width="fill_parent"
          android:layout_height="fill_parent"/>

     <ImageView
          android:id="@+id/iv_map_zoomin"
          android:layout_alignParentTop="true"
          android:layout_alignParentRight="true"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:src="@drawable/plus_32"/>

     <ImageView
          android:id="@+id/iv_map_zoomout"
          android:layout_alignParentTop="true"
          android:layout_alignParentLeft="true"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:src="@drawable/minus_32"/>

</RelativeLayout>


May I know what kind of Application you are doing Question

Regards,
plusminus

_________________
Download my apps Idea
Please remember, that this board is give & take Smile


| Android Development Community / Tutorials
Back to top
View user's profile Send private message Send e-mail Visit poster's website
res
Senior Developer
Senior Developer


Joined: 20 Nov 2007
Posts: 147
Location: United States

PostPosted: Tue Feb 26, 2008 3:53 am    Post subject: Reply with quote

plusminus wrote:

Anyone knows whether I can release any sources or previews when I plan to submit to the Android Challenge Question


Nothing stopping you but I'd be wary of people possibly copying your idea. Instead of posting it all together maybe break it down into tiny tut's?
Back to top
View user's profile Send private message
agent00
Junior Developer
Junior Developer


Joined: 18 Jan 2008
Posts: 12

PostPosted: Tue Feb 26, 2008 11:37 am    Post subject: Reply with quote

Thanks for the information.

plusminus wrote:
May I know what kind of Application you are doing Question


I will submit a short description in the "promote your application" forum soon. I can already tell you it's a msn like with some usefull functionnality using gps (and map view of course) ... but not a gps application Wink
Back to top
View user's profile Send private message
plusminus
Site Admin
Site Admin


Joined: 14 Nov 2007
Posts: 2660
Location: College Park, MD

PostPosted: Sun Mar 02, 2008 2:05 pm    Post subject: Reply with quote

Hey guys,

I created a short screencast of todays results:
Filesize: 2,3 MBytes Exclamation


Any feedback appreciated Smile

[Edit]
Screencast updated Exclamation

Many improvements Smile
[/Edit]

Regards,
plusminus

_________________
Download my apps Idea
Please remember, that this board is give & take Smile


| Android Development Community / Tutorials
Back to top
View user's profile Send private message Send e-mail Visit poster's website
gsheep
Freshman
Freshman


Joined: 23 Dec 2007
Posts: 5

PostPosted: Sun Mar 02, 2008 5:27 pm    Post subject: Reply with quote

Looks good! Loving all the icons.
Back to top
View user's profile Send private message
plusminus
Site Admin
Site Admin


Joined: 14 Nov 2007
Posts: 2660
Location: College Park, MD

PostPosted: Sun Mar 02, 2008 10:36 pm    Post subject: Reply with quote

Hey guys,

updated Very Happy

Filesize: 4 MBytes Exclamation


Damn I start feeling a bit proud Rolling Eyes

Any feedback appreciated Smile

What would you like more/less or bigger/smaller ...

Regards,
plusminus

_________________
Download my apps Idea
Please remember, that this board is give & take Smile


| Android Development Community / Tutorials
Back to top
View user's profile Send private message Send e-mail Visit poster's website
res
Senior Developer
Senior Developer


Joined: 20 Nov 2007
Posts: 147
Location: United States

PostPosted: Mon Mar 03, 2008 5:15 pm    Post subject: Reply with quote

Looks good, although when the user goes off track and a new route is re-calculated it kept suggesting a similar route many times in a row which looked awkward, it was towards the end of the demo. Maybe if the same route is suggested to pop-up a message informing them to turn-around?

Any future ideas for the project?
Back to top
View user's profile Send private message
plusminus
Site Admin
Site Admin


Joined: 14 Nov 2007
Posts: 2660
Location: College Park, MD

PostPosted: Mon Mar 03, 2008 7:24 pm    Post subject: Reply with quote

res wrote:
Looks good, although when the user goes off track and a new route is re-calculated it kept suggesting a similar route many times in a row which looked awkward, it was towards the end of the demo. Maybe if the same route is suggested to pop-up a message informing them to turn-around?

Any future ideas for the project?


Thanks for the response Smile ,

the time until the route gets re-calculated is variable. So I can make it long enough to make a Text2Speech API say "Turn around if possible".
Also the the screencast runs 'fast-forwarded', at ~ 100-300 meters per second (just that it gets not boring), what is the speed of a jet Wink

So its hard to say how it will feel in a real world test.

(Basically I do not like "please turn around"-messages, because when you miss a turn, there is probably not even a chance to turn around...)

Regards,
plusminus

_________________
Download my apps Idea
Please remember, that this board is give & take Smile


| Android Development Community / Tutorials
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Display posts from previous:   
       anddev.org - Android Development Community | Android Tutorials | Index -> Promote your Android Application All times are GMT + 1 Hour
Goto page Previous  1, 2, 3, 4, 5, 6  Next
Page 2 of 6

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum


© 2007, Android Development Community
All rights reserved.
Powered by phpBB.