我正在嘗試進入Android編程,並從書中採取了一些例子。 在這些例子中要求把下面的代碼:爲什麼Bundle對象在onCreate()上始終爲空?
public class ExemploCicloVida extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
Log.i(TAG, getClassName() + " onCreate() called on: " + icicle);
TextView t = new TextView(this);
t.setText("Exemplo de ciclo de vida de uma Activity.\nConsulte os logs no LogCat");
setContentView(t);
}
}
我不知道爲什麼Bundle對象總是在這種情況下空。
謝謝wannik。 API給了我線索,也是你的,我只是在我自己的代碼上鍵入Ctrl + F11,而冰柱不再爲空。 –