开发者

Why would an android user report "Force quits every time I load"?

开发者 https://www.devze.com 2022-12-12 12:55 出处:网络
I\'m trying to guess why a user would report \"Force quits every time I load\" The problem does not occur for all users, especially not me.

I'm trying to guess why a user would report "Force quits every time I load"

The problem does not occur for all users, especially not me.

T开发者_Python百科he system constructs a database when it first loads. I suspect that user's phone does not have enough memory.

Questions: How can I verify that the system has enough memory to store a small database? What else might cause a user's particular system to force quit on startup?

Wrong answers or things I've tried thus far:

  • The user's hardware is probably different than mine
  • The user's software and available memory is likely different as well
  • The data is already loading in its own thread, with a progress dialog showing


Add some smarts to your app to send you stack traces when the app crashes in the field. That'll narrow down the specific problem and can help you tailor your efforts to clear it up.


Sounds quite odd, does a freshly booted phone give the same error? Also ask the user to check available storage, might be out if space.


If the UI thread gets frozen for a period of time, then it will show that dialog. Try running the task in the background using an AsyncTask.

Edit: I'm assuming it's this error message.

0

精彩评论

暂无评论...
验证码 换一张
取 消