/** Return the intent that started this activity. */public Intent getIntent() { return mIntent;} public void setIntent(Intent newIntent) { mIntent = newIntent;} /** Return the application that owns this activity. */public final Application getApplica…
/** * Call this when your activity is done and should be closed. The * ActivityResult is propagated back to whoever launched you via * onActivityResult(). * 翻译下:当activity执行完毕并且应该关闭的时候,调用此方法. * 这个ActivityResult马上会返回给调用这个activity的onActivityResult()方法 *…