我想知道如何使用导航体系结构组件实现启动屏幕。
直到现在我有这样的东西
用户必须首次在ProfileFragment
中设置其个人资料,并且可以从ChatFragment
中编辑其个人资料。
我的问题是导航后我不知道如何从堆栈中删除SplashFragment
。我见过conditional navigation,但不太了解。
答案 0 :(得分:13)
启动画面一直在Android上很奇怪。您只想在单击应用程序图标与创建第一个Activity
之间显示初始屏幕。如果您的启动画面是Fragment
,则在创建第一个Activity
之前,用户仍会看到白色背景,并且由于必须创建启动画面Fragment
,因此应用的启动时间会增加并删除。最佳实践是使用飞溅AppTheme
,如this post中的Ian Lake(Android框架工程师)所述。
关于导航,您的应用应具有固定的目的地,这是用户进入和退出您的应用时所看到的第一个屏幕和最后一个屏幕,如principles of navigation中所述。在您的情况下,将ChatFragment
设置为固定目标是有意义的。在onCreate
的{{1}}中,您应该检查用户是否已有个人资料,如果没有,则使用conditional navigation将他们重定向到ChatFragment
。
答案 1 :(得分:5)
您可以尝试一下,目前它对我有用:
<action
android:id="@+id/action_splashFragment_to_profileFragment"
app:destination="@id/signInFragment"
app:launchSingleTop="true"
app:popUpTo="@id/splashFragment"
app:popUpToInclusive="true" />
只需设置popUpTo(the current destination)
和popUpToInclusive(true)
,它将弹出所有其他屏幕,直到到达指定的目标为止-如果将popUpToInclusive()
设置为true
,也将弹出目标-在导航到新目的地之前。
答案 2 :(得分:2)
这是解决上述情况的两种方法。
一个:
在NavHostFragment's Activity
中,重写onBackPress()
方法;如果当前的NavDestination
是MainFragment
,则只覆盖finish()
Activity
。
@Override
public void onBackPressed() {
NavDestination navDestination = mNavController.getCurrentDestination();
if (navDestination != null
&& navDestination.getId() == R.id.mainFragment) {
finish();
return;
}
super.onBackPressed();
}
两个:
在Navigation_graph app:popUpTo="@id/nav_graph"
和app:popUpToInclusive="true"
<?xml version="1.0" encoding="utf-8"?>
<navigation
android:id="@+id/nav_graph"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
app:startDestination="@id/splashFragment">
<fragment
android:id="@+id/splashFragment"
android:name="xxx.fragment.splash.SplashFragment"
android:label="fragment_splash"
tools:layout="@layout/fragment_splash">
<action
android:id="@+id/action_splashFragment_to_mainFragment"
app:destination="@id/mainFragment"
app:enterAnim="@anim/anim_right_in"
app:exitAnim="@anim/anim_left_out"
app:popEnterAnim="@anim/anim_left_in"
app:popExitAnim="@anim/anim_right_out"
app:popUpTo="@id/nav_graph"
app:popUpToInclusive="true"/>
<action
android:id="@+id/action_splashFragment_to_guideFragment"
app:destination="@id/guideFragment"
app:enterAnim="@anim/anim_right_in"
app:exitAnim="@anim/anim_left_out"
app:popEnterAnim="@anim/anim_left_in"
app:popExitAnim="@anim/anim_right_out"
app:popUpTo="@id/nav_graph"
app:popUpToInclusive="true"/>
</fragment>
<fragment
android:id="@+id/guideFragment"
android:name="xxx.fragment.guide.GuideFragment"
android:label="GuideFragment"
tools:layout="@layout/fragment_guide">
<action
android:id="@+id/action_guideFragment_to_mainFragment"
app:destination="@id/mainFragment"
app:enterAnim="@anim/anim_right_in"
app:exitAnim="@anim/anim_left_out"
app:popEnterAnim="@anim/anim_left_in"
app:popExitAnim="@anim/anim_right_out"
app:popUpTo="@id/nav_graph"
app:popUpToInclusive="true"/>
</fragment>
<fragment
android:id="@+id/mainFragment"
android:name="xxx.fragment.main.MainFragment"
android:label="fragment_main"
tools:layout="@layout/fragment_main">
</fragment>
</navigation>
希望获得帮助!
警告:不建议使用。在导航alpha08中,清除了clearTask标签:Remove the deprecated clearTask and launchDocument flags from NavOptions
在我的项目中,我在动作中测试了app:clearTask =“ true”,并且效果很好。~~~
<fragment
android:id="@+id/splashFragment"
android:name="xxx.SplashFragment"
android:label="fragment_splash"
tools:layout="@layout/fragment_splash">
<action
android:id="@+id/action_splashFragment_to_mainFragment"
app:destination="@id/mainFragment"
app:enterAnim="@anim/anim_right_in"
app:exitAnim="@anim/anim_left_out"
app:popEnterAnim="@anim/anim_left_in"
app:popExitAnim="@anim/anim_right_out"
app:clearTask="true"/>
</fragment>
答案 3 :(得分:2)
要实施适当的启动画面,请遵循@Sander指向的this教程。
简而言之,要实现启动屏幕,您需要像这样的SplashTheme
:
<style name="SplashTheme" parent="Theme.AppCompat.NoActionBar">
<item name="android:windowBackground">@drawable/splash_background</item>
</style>
splash_background
可绘制对象应如下所示:
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"
android:opacity="opaque"> <!-- android:opacity="opaque" should be here -->
<item>
<!--this is your background, you can use color, gradient etc.-->
<color android:color="@color/colorPrimary"/>
<!--<shape>
<gradient
android:angle="315"
android:endColor="#1a82ff"
android:startColor="#2100d3"
android:type="linear"/>
</shape> -->
</item>
<item>
<bitmap android:src="@drawable/ic_logo"
android:gravity="center"/>
</item>
</layer-list>
在Manifest
中,只需将SplashTheme
添加到您的活动中:
<activity android:name=".ui.MainActivity"
android:theme="@style/SplashTheme">
然后在MainActivity
中返回到您的常规AppTheme
,请在onCreate
调用之前在super
中进行此操作:
override fun onCreate(savedInstanceState: Bundle?) {
setTheme(R.style.AppTheme)
super.onCreate(savedInstanceState)
.....
答案 4 :(得分:1)
您可以尝试使用此技巧,这对我来说绝对没问题。 从清单文件将启动屏幕设为启动器屏幕,然后从启动屏幕开始主机活动。
Manifest file code
`<activity android:name=".SplashScreen"
android:theme="@style/Theme.AppCompat.Light.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>`
在您的Java文件中
`new Handler().postDelayed(new Runnable(){
@Override
public void run() {
/* Create an Intent that will start the Navigation host activity . */
Intent mainIntent = new Intent(getApplicationContext(), MainActivity.class);
startActivity(mainIntent);
finish();
}
}, 5000);`
您的主机活动的Xml代码
`<?xml version="1.0" encoding="utf-8"?>
android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<fragment
android:id="@+id/nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
app:defaultNavHost="true"
app:navGraph="@navigation/navigation_graph" />
</android.support.constraint.ConstraintLayout>`
您的导航将是这样
`<?xml version="1.0" encoding="utf-8"?>
<navigation xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/navigation_graph"
app:startDestination="@id/homeFragment"
>
<fragment
android:id="@+id/homeFragment"
android:name="com.devgenesis.breaker.ice.navigationmproject.HomeFragment"
android:label="fragment_home"
tools:layout="@layout/fragment_home" />
</navigation>`