我注意到了这一点:我有一个父活动A,用startActivity(intent)
打开子活动B.在活动B中如果我将finish()
此活动以某种方式从初始状态再次加载父活动,但如果我将按下后面的键盘按钮,我将返回到活动A,如同在状态中我离开它。
以下是我如何完成活动B的示例:
@Override
public boolean onOptionsItemSelected(MenuItem item)
{
switch (item.getItemId())
{
case android.R.id.icon:
finish();
return true;
default:
return super.onOptionsItemSelected(item);
}
}
以下是我如何从活动A打开活动B:
Intent intent = new Intent(thisActivity, toActivity);
startActivity(intent);
这是Manifest XML:
<activity
android:name="com.evapp.activities.A"
android:label="@string/A" >
</activity>
<activity
android:name="com.evapp.activities.B"
android:configChanges="orientation"
android:label="@string/B"
android:parentActivityName="com.evapp.activities.A"
android:screenOrientation="portrait" >
<!-- Parent activity meta-data to support 4.0 and lower -->
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="com.evapp.activities.A" />
</activity>
有人可以解释一下finish()
与回归之间的差异吗?
答案 0 :(得分:1)
按下后退按钮并调用finish()应该具有完全相同的行为,前提是您没有覆盖onBackPressed。
当活动B从活动A开始时,会发生以下事件:
在调用finish()或按活动B的后退按钮时,将发生以下事件:
活动A不会再次创建,但会重新开始。 (除非它因释放资源而被销毁)。
您可以使用以下示例应用程序验证相同内容。
MainActivity.java
package com.example.activitytest;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Toast.makeText(getApplicationContext(), "MainActivity created", Toast.LENGTH_SHORT).show();
Button launchChild = (Button) findViewById(R.id.btnLaunchChild);
launchChild.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent myIntent = new Intent(getBaseContext(), ChildActivity.class);
//myIntent.putExtra("key", value); //Optional parameters
startActivity(myIntent);
}
});
}
@Override
protected void onResume(){
super.onResume();
Toast.makeText(getApplicationContext(), "MainActivity resumed", Toast.LENGTH_SHORT).show();
}
@Override
protected void onPause(){
super.onPause();
Toast.makeText(getApplicationContext(), "MainActivity paused", Toast.LENGTH_SHORT).show();
}
@Override
protected void onDestroy(){
super.onPause();
Toast.makeText(getApplicationContext(), "MainActivity destroyed", Toast.LENGTH_SHORT).show();
}
}
ChildActivity.java
package com.example.activitytest;
public class ChildActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_child);
Toast.makeText(getApplicationContext(), "Child created", Toast.LENGTH_SHORT).show();
Button finish = (Button) findViewById(R.id.btnFinish);
finish.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
finish();
}
});
}
@Override
protected void onResume(){
super.onResume();
Toast.makeText(getApplicationContext(), "Child resumed", Toast.LENGTH_SHORT).show();
}
@Override
protected void onPause(){
super.onPause();
Toast.makeText(getApplicationContext(), "Child paused", Toast.LENGTH_SHORT).show();
}
@Override
protected void onDestroy(){
super.onPause();
Toast.makeText(getApplicationContext(), "Child destroyed", Toast.LENGTH_SHORT).show();
}
}
activity_main.xml中
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<Button
android:id="@+id/btnLaunchChild"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="@string/launch_child" />
</RelativeLayout>
activity_child.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<Button
android:id="@+id/btnFinish"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:text="@string/finish" />
</RelativeLayout>
的AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.activitytest"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="9"
android:targetSdkVersion="19" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.activitytest.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.example.activitytest.ChildActivity">
</activity>
</application>
</manifest>
答案 1 :(得分:1)
使用片段时,调用finish()
并按后退按钮并不完全相同。如果我们检查Android Activity
的源代码,我们可以看到它不是立即调用finish()
,而是在此之前调用FragmentManagers
的{{1}}方法。
popBackStackImmediate()
/**
* Called when the activity has detected the user's press of the back
* key. The default implementation simply finishes the current activity,
* but you can override this to do whatever you want.
*/
public void onBackPressed() {
if (!mFragments.popBackStackImmediate()) {
finish();
}
}
的作用是从后栈中删除最新的片段。立即意味着它立即执行而不是异步执行。只有在没有删除任何片段时才返回false - 在这种情况下,将调用popBackState()
。
我不确定为什么在调用finish()
时,您的第一项活动似乎会重新初始化。在您真正回到第一个活动的情况下,应该执行finish()
方法,这可能会改变它的外观。要完全了解正在发生的事情,我们应该看看您是如何创建片段以及onResume()
方法中发生的事情。