• 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
  • Paul Clapham
  • Devaka Cooray
  • Tim Cooke
Sheriffs:
  • Rob Spoor
  • Liutauras Vilda
  • paul wheaton
Saloon Keepers:
  • Tim Holloway
  • Tim Moores
  • Mikalai Zaikin
  • Carey Brown
  • Piet Souris
Bartenders:
  • Stephan van Hulst

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
 
God is a comedian playing for an audience that is afraid to laugh - Voltair. tiny ad:
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
reply
    Bookmark Topic Watch Topic
  • New Topic