• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Ron McLeod
  • Tim Cooke
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • Junilu Lacar
  • Rob Spoor
  • Jeanne Boyarsky
Saloon Keepers:
  • Stephan van Hulst
  • Carey Brown
  • Tim Holloway
  • Piet Souris
Bartenders:

Creating a product review app, whats best option

 
Greenhorn
Posts: 6
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello I just wanted to get an opinion from some more skilled programmers. I am creating an app where users can write and read comments regarding certain products. What is the best option to do this? Like should I create a webpage then implement a web view?

Or is there another way I can create this. Like have a comment box where a user can add a comment and below that he/she is able to see other users postings. This I know information would have to be stored and pulled from a database.

What option would be more efficient and user friendly? And if anyone has good links for tutorials on the option you suggest that would be greatly appreciated. Thanks
 
Ranch Hand
Posts: 252
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can do it by two ways,

Creating app means you really create an app which displays data from remote server. No webview integration.In this user will have more app like feeling.This is more time consuming also.You also need to write web services to pull and push data from server.


And second display them in webview. this will serve two purpose. You will have an app too and also the same thing will be able to see from browsers also. For this you need to write html pages which supports all browsers.


Choice is yours now
 
I'm thinking about a new battle cry. Maybe "Not in the face! Not in the face!" Any thoughts tiny ad?
The Low Tech Laboratory Movie Kickstarter is LIVE NOW!
https://www.kickstarter.com/projects/paulwheaton/low-tech
reply
    Bookmark Topic Watch Topic
  • New Topic