meow
meow

Reputation: 28174

URL routing within an Android application

I am using a webview with many types of links in my iOS application. The links point to a specific URL

appname/answers/1  -> load a view with answer 1
appname/questions/2/answer  -> load a view to answer question 2

Which i in turn specifies the action that the system should take to handle it

If I would like to reuse my webview in my android application, what would be the right way to handle it? ie:

Upvotes: 1

Views: 861

Answers (1)

dwery
dwery

Reputation: 1116

You'll want this one, it's pretty handy for those of us with Three20/iOS background: https://github.com/usepropeller/routable-android

Upvotes: 2

Related Questions