私はAndroidプログラミングを始めようとしていますが、本からいくつかの例を取り上げています。これらの例では、次のコードを入力する必要があります。
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オブジェクトが常にnullになるのだろうか。