工具栏内的 TextView 是否变得不可变?

Does a TextView inside a Toolbar become immutable?

我尝试按照有关在工具栏内创建自定义 TextView 的教程 (https://guides.codepath.com/android/using-the-app-toolbar#custom-title-view) 进行操作。我想要做的是能够使用 Java 动态更改 TextView 中的文本。但是,问题是我不能,也没有显示任何错误消息。

XML中的工具栏代码:

        <androidx.appcompat.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@color/colorPrimary"
            android:minHeight="?attr/actionBarSize"
            android:elevation="4dp"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent">

                <TextView
                    android:id="@+id/toolbarTitle"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center"
                    android:text="Test1"
                    android:textSize="16sp"
                    android:textColor="@color/textColor" />

        </androidx.appcompat.widget.Toolbar>

工具栏Java代码在ActivityClass:

        Toolbar toolbar = findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);
        getSupportActionBar().setDisplayShowTitleEnabled(false);
        TextView toolbarTitle = toolbar.findViewById(R.id.toolbarTitle);

        toolbarTitle.setText("Test");

Styles.xml:

    <!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <!-- Customize your theme here. -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorSecondary</item>
        <item name="colorAccent">@color/colorAccent</item>
    </style>

一个简单的 toolbarTitle.setText() 应该可以完成这项工作,但由于某些未知原因它没有。即使我从 XML 代码中删除 android:text 并在 Java 代码之后立即使用 setText() 它仍然不起作用。

这是否意味着工具栏中的 TextView 是不可变的?

谢谢!

编辑 1:

所以我设法找到了问题,但还没有特别找到解决方案。问题是由 activity_main.xml 文件中的数据绑定引起的。删除与数据绑定相关的所有代码后,我就可以按我想要的方式使用 setText() 了。为什么这会导致问题?

activity_main.xml:

<?xml version="1.0" encoding="utf-8"?>
<layout
    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"
    tools:context=".activity.MainActivity">
    <data>
        <variable
            name="VM"
            type="com.tahmidu.app.view_model.IMainActivityNavViewModel" />
    </data>
    <androidx.constraintlayout.widget.ConstraintLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@color/colorPrimary">

        <androidx.appcompat.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@color/colorPrimary"
            android:minHeight="?attr/actionBarSize"
            android:theme="?attr/actionBarTheme"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toTopOf="parent">

            <TextView
                android:id="@+id/toolbarTitle"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:textColor="@color/textColor" />

        </androidx.appcompat.widget.Toolbar>

        <FrameLayout
            android:id="@+id/audioMainFragment"
            android:name="com.tahmidu.app.fragment.AudioFragment"
            android:layout_width="0dp"
            android:layout_height="0dp"
            app:layout_constraintBottom_toTopOf="@+id/bottomNavigationView"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintTop_toBottomOf="@+id/toolbar" />


        <com.google.android.material.bottomnavigation.BottomNavigationView
            android:id="@+id/bottomNavigationView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@color/colorSecondary"
            app:itemIconTint="@color/bottom_navigation_color"
            app:labelVisibilityMode="unlabeled"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:menu="@menu/bottom_navigation_main" />

    </androidx.constraintlayout.widget.ConstraintLayout>
</layout>

工具栏中的 TextView 绝对不是不可变的。也许问题出在您调用 textview.setText() 方法的位置。它应该在创建视图之后,所以 onCreate() 或 onViewCreated()

解决方案(Nabil 建议): 绑定文本。确保设置 LifecycleOwner() 方法,否则 UI 不会更新。如果从外观上看使用数据绑定,setText() 将停止工作。