我开始在Android应用程序上工作,我想使用这个新的Android导航组件。并且此应用程序将具有5个部分的底部导航视图,并且每个部分都需要保留片段的堆栈。就像我在“第一部分”上并导航到搜索结果然后导航到地图一样,现在,如果我在底部导航视图中单击“个人资料”部分,然后返回到第一部分,则仍然需要在地图屏幕上。因此,我发现此medium article解释了此问题的一种可能解决方案,即拥有5个NavHostFragments,然后根据您所在的部分显示/隐藏它们。还有另一件事是,当您导航到某些片段时,我需要隐藏底部导航视图...因此,我创建了一个新项目来尝试一些操作,但得到了一些奇怪的结果。我无法完全理解fitsSystemWindows
属性的工作原理,并且出现了一些奇怪的行为...
第一件事是,第4张图片的工具栏中的标题具有较高的空白,我不知道为什么...我创建了一个全新的没有片段的项目,只是一个主要活动具有完全相同的布局,而我没有在工具栏中标题的顶部留有空白。
第二件事是,当我从Safari页面返回到搜索结果(第4和第5张图像)时,底部导航视图无缘无故可见一半...
如何修复第四张和第五张图像?
还有一个关于fitSystemWindows
属性的问题。第一张图片上的“搜索”按钮不应该在状态栏下方吗?由于fitSystemWindows=true
未应用于ConstraintLayout -> FrameLayout -> ExploreFragment's ConstraintLayout
。将fitSystemWindows
属性添加到XML的唯一位置是在fragment_safari.xml
文件中。
注意:我需要支持的最低Android API级别为21(棒棒糖及更高版本)。
代码如下:
我正在使用的主题
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
<item name="android:statusBarColor">@android:color/transparent</item>
<item name="android:windowBackground">@color/colorWindowBackground</item>
</style>
MainActivity.kt
class MainActivity : AppCompatActivity() {
// ...
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
currentController = findNavController(R.id.explore_nav_host_fragment)
exploreNavController.addOnNavigatedListener { controller, destination ->
when (destination.id) {
R.id.searchResultsFragment,
R.id.exploreFragment -> showBottomNavigation()
R.id.safariFragment,
R.id.filterFragment -> hideBottomNavigation()
}
}
bottom_navigation.setOnNavigationItemSelectedListener {
when (it.itemId) {
R.id.action_explore -> {
currentController = exploreNavController
explore_nav_host_frame.visibility = View.VISIBLE
favorite_nav_host_frame.visibility = View.GONE
reviews_nav_host_frame.visibility = View.GONE
true
}
R.id.action_favorite -> {
currentController = favoriteNavController
explore_nav_host_frame.visibility = View.GONE
favorite_nav_host_frame.visibility = View.VISIBLE
reviews_nav_host_frame.visibility = View.GONE
true
}
else -> false
}
}
}
fun hideBottomNavigation() {
if(isBottomNavigationViewVisible) {
bottom_navigation.visibility = View.GONE
isBottomNavigationViewVisible = false
}
}
fun showBottomNavigation() {
if(!isBottomNavigationViewVisible) {
bottom_navigation.visibility = View.VISIBLE
isBottomNavigationViewVisible = true
}
}
// ...
}
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<FrameLayout
android:id="@+id/explore_nav_host_frame"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toTopOf="@+id/bottom_navigation"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent">
<fragment
android:id="@+id/explore_nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:defaultNavHost="false"
app:navGraph="@navigation/nav_graph_explore" />
</FrameLayout>
<FrameLayout
android:id="@+id/favorite_nav_host_frame"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintBottom_toTopOf="@+id/bottom_navigation"
android:visibility="gone"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent">
<fragment
android:id="@+id/favorite_nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:defaultNavHost="false"
app:navGraph="@navigation/nav_graph_favorite" />
</FrameLayout>
<FrameLayout
android:id="@+id/reviews_nav_host_frame"
android:layout_width="0dp"
android:layout_height="0dp"
android:visibility="gone"
app:layout_constraintBottom_toTopOf="@+id/bottom_navigation"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent">
<fragment
android:id="@+id/reviews_nav_host_fragment"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:defaultNavHost="false"
app:navGraph="@navigation/nav_graph_reviews" />
</FrameLayout>
<com.google.android.material.bottomnavigation.BottomNavigationView
android:background="@android:color/darker_gray"
android:elevation="4dp"
android:id="@+id/bottom_navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:menu="@menu/bottom_menu"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
SafariFragment.kt
class SafariFragment : Fragment() {
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?, savedInstanceState: Bundle?): View? {
return inflater.inflate(R.layout.fragment_safari, container, false)
}
override fun onActivityCreated(savedInstanceState: Bundle?) {
super.onActivityCreated(savedInstanceState)
initActionBar()
addTextViews()
}
private fun initActionBar() {
(activity as AppCompatActivity).apply {
setSupportActionBar(toolbar)
supportActionBar?.apply {
title = "Safari"
setDisplayHomeAsUpEnabled(true)
setDisplayShowHomeEnabled(true)
}
}
}
private fun addTextViews() {
for(i in 1..10) {
content_scroll.addView(TextView(context).apply {
text = i.toString()
setBackgroundColor(ContextCompat.getColor(context, R.color.colorAccent))
setTextColor(ContextCompat.getColor(context, R.color.white))
layoutParams = LinearLayout.LayoutParams(
LinearLayout.LayoutParams.MATCH_PARENT,
48*3
).apply {
setMargins(36, 36, 36, 36)
}
})
}
}
}
fragment_safari.xml
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout 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"
android:fitsSystemWindows="true">
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/appbar_layout"
android:layout_width="match_parent"
android:layout_height="240dp"
android:fitsSystemWindows="true"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<com.google.android.material.appbar.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
app:contentScrim="?attr/colorPrimary"
app:layout_scrollFlags="scroll|enterAlways|enterAlwaysCollapsed|snap">
<ImageView
android:id="@+id/safari_image"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:scaleType="centerCrop"
app:layout_collapseMode="parallax"
app:srcCompat="@drawable/safari"
tools:ignore="ContentDescription" />
<View
android:layout_width="match_parent"
android:layout_height="80dp"
android:background="@drawable/toolbar_gradient"
android:fitsSystemWindows="true" />
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
app:layout_collapseMode="pin"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
</com.google.android.material.appbar.CollapsingToolbarLayout>
</com.google.android.material.appbar.AppBarLayout>
<androidx.core.widget.NestedScrollView
android:id="@+id/scroll"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<LinearLayout
android:id="@+id/content_scroll"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" />
</androidx.core.widget.NestedScrollView>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
编辑:
我设法修复了底部导航视图,我所做的是将CoordinatorLayout用作每个片段布局的根,然后将fitsSystemWindows=true
应用于CoordinatorLayout以及第一个子项。但是仍然在工具栏中出现标题问题。