TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: Resource for estimating UI design costs

2 pointsby macuover 9 years ago
I was wondering if there is a site that estimates the "intrinsic weight" or minimal memory footprint of UI components like UIViewController (iOS) and LinearLayout (Android) in different contexts. Wouldn't that be an interesting tool for UI designer/developers like myself. I am just considering putting a UIViewController on table cells, not sure if it's even possible yet. It would be neat to select generalizing criteria like OS version and device family, and choose one or more components (consider for e.g. UICollectionView within UITableViewCell x10), and then see lower/upper limits on the estimated resource costs (rendering time, required memory) of basic design recipes.

1 comment

Zigurdover 9 years ago
In Android, try the Hierarchy Viewer. The &quot;cost&quot; of each view is small but it is easy to pile up the nested views in a complex hierarchy that will slow down.<p>Conversely, you won&#x27;t cure a slow Ui by selecting faster View classes. You&#x27;ll do it by simplifying.