How to check for background process in android
In my application I am doing background process of database storing. How can I check that the background proces开发者_运维技巧s is running or over? using coding
Thread status can be checked with thread.getState()
. You will get Thread.State
enum.
精彩评论