为什么要使用这些方法
java.lang.Thread.currentThread(),
java.lang.Thread.sleep(),
java.lang.Object.notify(),
java.lang.Object.wait()
of Thread & Object class are not implemented in java API's itself?
为什么需要使用本机方法,这是C/C++编程语言的一部分?
这背后有没有什么区域,或者java不能提供很好的性能?
我是android编程的新手。我想知道创建像按钮这样的ui元素更好的方法是在layout.xml中定义它们还是在运行时通过java添加它们,如下所示:
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
LinearLayout ll = new LinearLayout(this);
mRecordButton = new RecordButton(this);
ll.addView(mRecordButton,
new LinearLayout.LayoutParams