• 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
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

One web app on different Android devices

 
Ranch Hand
Posts: 885
3
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Is there a reasonable way to design a web app that will look good across different Android devices?

I think it's mostly an issue of how to handle different screen sizes and aspect ratios, and I'm wondering what kind of support is available.

Thanks,
Burk
 
Rancher
Posts: 1369
1
Android Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Good question!
Web based mobile application were supposed to be cross platform so covering different devices running same platform should NOT be a problem, hopefully.
 
author
Posts: 23
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hey Burk,

Going with a web UI framework is generally a good start, and even though in the book we start with the "roll your own" approach to teach the fundamentals we also cover quite a few frameworks in Chapter 12 (see https://coderanch.com/t/524920/Android/Mobile/Javascript-frameworks-have-good-performance).

In terms of screen sizes and aspect ratios you can handle these things with CSS3 media queries and/or a good fluid HTML design.

Cheers,
Damon.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic