我设计了一个带有启动屏幕的应用程序,它 sleep() s 3 秒并显示我的应用程序的主屏幕。我可以无缝导航到我的应用程序,当我返回主屏幕后,当按下返回按钮时,控件会再次返回启动屏幕,而不是终止应用程序。请给我一个解决方案。:)
6 回答
由于您尚未发布代码,我猜您没有调用finish();
. 您可以onPause()
按照其他人的建议在您的内部或在调用新 Intent 之前调用它。
更新
如果您只是加载启动屏幕,您可能只是将参数设置为不将其保留在活动堆栈中。在您定义活动的 manifest.xml 中:
<activity android:name=".SplashScreen" android:noHistory="true" ... />
你不需要上课finish()
。只是正常调用startActivity()
。
在 Android 中启动新的 Activity 并完成当前的 Activity?
希望这可以帮助。
在开始新的活动之前完成你的启动活动。您的启动活动的onResume
方法可能是这样的:
@Override
protected void onResume() {
super.onResume();
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
// finish the splash activity so it can't be returned to
SplashActivity.this.finish();
// create an Intent that will start the second activity
Intent mainIntent = new Intent(SplashActivity.this, SecondActivity.class);
SplashActivity.this.startActivity(mainIntent);
}
}, 3000); // 3000 milliseconds
}
通过添加android将您的启动活动 xml 更改如下 :noHistory =“ true ”,您就完成了。
<activity
android:name="com.naveen.example.SplashActivity"
android:label="@string/app_name"
android:noHistory="true" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
仅作记录:使用此处描述的解决方案,您会浪费时间,因为它们会在继续之前暂停初始化 2-3 秒。
我更喜欢Splash Screen Layout
在我的main_activity.xml
. 我通过扩展应用程序来检测应用程序的第一次启动。如果是第一次开始,我会在后台构建 UI 时显示我的 Splash-Screen ...(如果 ProgressBar 滞后,请使用后台线程!)
//Extend Application to save the value. You could also use getter/setter for this instead of Shared Preferences...
public class YourApplication extends Application {
public static final String YOUR_APP_STARTUP = "APP_FIRST_START";
@Override
public void onCreate() {
super.onCreate();
//set SharedPreference value to true
SharedPreferences mPreferences = PreferenceManager.getDefaultSharedPreferences(getApplicationContext());
SharedPreferences.Editor editor = mPreferences.edit();
editor.putBoolean(YOUR_APP_STARTUP, true);
editor.apply();
...
}
检查你的第一次开始MainActivity
public class YourMainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//hide actionbar and other menu which could overlay the splash screen
getActionBar().hide();
setContentView(R.layout.activity_main);
Boolean firstStart = PreferenceManager.getDefaultSharedPreferences(getApplicationContext()).getBoolean(TVApplication.YOUR_APP_STARTUP, true);
if (firstStart) {
//First app start, show splash screen an hide it after 5000ms
final RelativeLayout mSplashScreen = (RelativeLayout) findViewById(R.id.splash_screen);
mSplashScreen.setVisibility(View.VISIBLE);
mSplashScreen.setAlpha(1.0f);
final FrameLayout mFrame = (FrameLayout) findViewById(R.id.frame_container);
mFrame.setAlpha(0.0f);
Handler handler = new Handler();
handler.postDelayed(new Runnable() {
@Override
public void run() {
Animation fadeOutAnimation = AnimationUtils.loadAnimation(getApplicationContext(),
R.anim.fade_out_animation);
fadeOutAnimation.setDuration(500);
fadeOutAnimation.setAnimationListener(new Animation.AnimationListener() {
@Override
public void onAnimationStart(Animation animation) {
mFrame.setAlpha(1.0f);
getActionBar().show();
}
@Override
public void onAnimationEnd(Animation animation) {
mSplashScreen.setVisibility(View.GONE);
}
@Override
public void onAnimationRepeat(Animation animation) {
}
});
mSplashScreen.startAnimation(fadeOutAnimation);
}
}, 5000); //<-- time of Splash Screen shown
} else {
((RelativeLayout) findViewById(R.id.splash_screen)).setVisibility(View.GONE);
getActionBar().show();
}
在 main.xml 的顶部插入 SplashScreen。我更喜欢RelativeLayout
那个。在示例中,SplashScreen 放置在带有 的布局中Navitgation Drawer
,这是我们非常喜欢的,不是吗?
//main_activity.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" >
<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<!-- The main content view -->
<FrameLayout
android:id="@+id/frame_container"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<!-- The navigation drawer list -->
<ListView
android:id="@+id/slider_list"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:layout_gravity="start"
android:background="@color/tvtv_background"
android:choiceMode="singleChoice"
android:divider="@drawable/nav_bar_divider"
android:dividerHeight="1dp"
android:listSelector="@android:color/transparent" />
</android.support.v4.widget.DrawerLayout>
<RelativeLayout
android:id="@+id/splash_screen"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:background="@color/tvtv_white"
android:visibility="visible" >
<ImageView
android:id="@+id/splash_screen_logo"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:paddingLeft="50dp"
android:paddingRight="50dp"
android:scaleType="fitCenter"
android:src="@drawable/ic_launcher" />
<TextView
android:id="@+id/splash_screen_text"
style="@style/TVTextBlueContent"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/splash_screen_logo"
android:layout_centerHorizontal="true"
android:padding="10dp"
android:text="Awesome splash shiat" />
<ProgressBar
android:id="@+id/splash_screen_loader"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/splash_screen_text"
android:layout_centerHorizontal="true"
android:clickable="false"
android:indeterminate="true" />
</RelativeLayout>
</RelativeLayout>
假设您的启动画面只会在您的应用程序启动时出现一次,并且在应用程序完成运行后重新启动应用程序之前不会再次显示(这意味着通过按主页按钮退出应用程序不算数),为什么不调用完成( ) 在您的初始屏幕活动的覆盖 onPause() 上,如下所示。
@Override
public void onPause() {
super.onPause();
finish();
}
它比运行线程或发布 Runnable 对象供处理程序处理要简单得多。我已经对其进行了测试,它似乎可以工作。我不知道这个解决方案是否有任何缺点,但如果有任何我忽略的问题,我希望有人会为我指出。
在开始之前,或者说去新活动之前,请完成旧活动,例如:
YourSplashActivity.this.finish();
Intent intent = new Intent(SplashActivity.this, SecondActivity.class);
YourSplashActivity.this.startActivity(intent);
此外,您可以执行以下逻辑:
// drop application to home activity (to prevent to show Splash)
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_HOME);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);