TE
科技回声
首页24小时热榜最新最佳问答展示工作
GitHubTwitter
首页

科技回声

基于 Next.js 构建的科技新闻平台,提供全球科技新闻和讨论内容。

GitHubTwitter

首页

首页最新最佳问答展示工作

资源链接

HackerNews API原版 HackerNewsNext.js

© 2025 科技回声. 版权所有。

Ask HN: How Hard to Make App for Android?

4 点作者 gohat将近 14 年前
Is it a lot harder to make an app for android than for the Apple devices?

1 comment

Pewpewarrows将近 14 年前
In my experience, no not at all. Really the hardest part is eliminating any/all of your ANRs (Application Not Responding), which is pretty easy if you just build it from the ground-up with a liberal use of AsyncTasks, Background Services, Content Providers, and BroadcastReceivers. If you can imagine a possible way to take a portion of your code off the main UI thread: do it.<p>The only advantage that I've seen with iOS development is default UI and animation behavior. With Android you don't get much by default, and there's not really any Open Source scene that I've been able to find. Some would also say that debugging is easier with iOS's emulators, but I just debug straight onto my Android phone hooked up to my workstation.<p>Fragmentation isn't the problem that people make it out to be. If you write flexible UIs and performance-driven code to begin with, you're not going to run into any real problems outside of game development. Only then do things get tricky with all the possible hardware configurations.
评论 #2663134 未加载