爲什麼我不能在最後一行使用setContentView(R.layout.main)
而沒有setContentView(tv)
?請向我解釋這一點。關於android應用程序「HelloWorld」
package com.mue.helloworld;
import android.app.Activity;
import android.os.Bundle;
import android.widget.TextView;
public class HelloWorldActivity extends Activity
{
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TextView tv = new TextView(this);
tv.setText("Hello, Android i am suvankar");
setContentView(tv);
}
}
沒有得到?您可以在此代碼的最後一個函數中設置setContentView(R.layout.main).............是什麼問題? –