標籤

C++ (12) Linux (6) MacOSX (4) Makefile (3) Matlab (3) Ubuntu (3) Android (2) C (1) Refactoring (1)
顯示具有 Android 標籤的文章。 顯示所有文章
顯示具有 Android 標籤的文章。 顯示所有文章

2011年12月28日 星期三

[Android] Intent, result, callback

廢話就不多說了
直接提供網址:
http://www.kfsoft.info/article-43-11--%E8%99%95%E7%90%86Activity-Result.html

寫得滿好的
希望因為我多加了一個inlink
可以讓他的blog被更多人看到XDD

[Android] thread, join

join的解釋如下:

final voidjoin()
Blocks the current Thread (Thread.currentThread()) until the receiver finishes
its execution and dies.
final voidjoin(long millis, int nanos)
Blocks the current Thread (Thread.currentThread()) until the receiver finishes
its execution and dies or the specified timeout expires, whatever happens first.
final voidjoin(long millis)
Blocks the current Thread (Thread.currentThread()) until the receiver finishes
its execution and dies or the specified timeout expires, whatever happens first.
來源資料:http://developer.android.com/reference/java/lang/Thread.html