我有几个片段和一个活动。该应用程序包含始终可见的工具栏。我的工具栏上有图标。当用户打开 2,4,5 个片段时,我需要隐藏此图标,并在用户打开 1 个和 3 个片段时显示此图标。我不需要此逻辑的所有代码,我需要有关如何实现它的建议以及在哪里为此行为添加一些逻辑
假设您使用的是 jetpack 的导航和单个活动,则会出现以下情况:
将目的地更改侦听器添加到活动内部的主导航控制器(addOnDestinationChangedListener
,界面NavController.OnDestinationChangedListener
(。在侦听器内部,您可以在onDestinationChanged
实现中检查destination.id
。实际上,你可以像这样创建两个集合
private val twoFourFiveDestinations =
setOf(R.id.two, R.id.four, R.id.five)
private val oneThreeDestinations =
setOf(R.id.one, R.id.three)
只是为了像这样if(twoFourFiveDestinations.contains(destination.id) ...
进行检查并相应地管理您的图标可见性,这将使生活更轻松。
替代解决方案是将图标管理移交给片段。您可以为带有活动的通信定义一些界面,并在相应的片段启动并运行时管理工具栏图标。但是你需要在问题的每个片段中都这样做。
第 1 步:使用一种方法创建一个接口 FragmentListener
:public interface MyFragmentListener {
void onChangeToolbarImage(boolean show);
}
第 2 步:在您的活动中实施:
ImageView toolarImage= findViewById(R.id.toolbarimage)()///
@Override
public void onChangeToolbarImage(boolean show) {
if()
{ //check your imageView is Visible or not
toolbarImage.setVisibility(show); //change your ImageView's visibility
}
}
第 3 步:在每个片段中,您需要从接口获取实例:
private MyFragmentListener fragmentListener;
第 4 步:在您的片段中覆盖 onAtach :
@Override
public void onAttach(@NonNull Context context) {
super.onAttach(context);
if (context instanceof MyFragmentListener)
fragmentListener = (MyFragmentListener) context;
fragmentListener.onChangeToolbarTitleImage(true or false);
}
如果您使用的是 java,请创建配套对象或静态变量。
class Util {companion object { lateinit var toolbarImg: ImageView }}
在您的主活动中创建初始化工具栏和图像视图
toolbar = findViewById(R.id.toolbar)
setSupportActionBar(toolbar)
Util.toolbarImg = toolbar.findViewById(R.id.cartImg)
.XML
<com.google.android.material.appbar.AppBarLayout
android:id="@+id/appBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay">
<ImageView
android:id="@+id/cartImg"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="start"
android:visibility="visible"
/>
</androidx.appcompat.widget.Toolbar>
</com.google.android.material.appbar.AppBarLayout>
现在,您需要做的就是控制此 ImageView 的可见性。 关于片段事务
要隐藏
if(Util.toolbarImg.visibility == View.VISIBLE){
Util.toolbarImg.visibility = View.GONE }