Android Fragment 中的 TextView 中不显示设置值

问题描述 投票:0回答:2

我是一名Android编程初学者。看来我的问题很简单而且愚蠢,仍然无法找到问题所在。

在片段中,我的目标是每秒显示一个点,这有助于提示某人做一些身体动作,但还远远不够。我一点一点地移动并在第一层本身获得了结构。

public class ActionFragment extends Fragment {

    private FragmentActionBinding binding;
    TextView pCycleNum;
    int pCycle;

    @Override
    public View onCreateView(
            LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState
    ) {

        View v = inflater.inflate(R.layout.fragment_action, container, false);
        pCycleNum = v.findViewById(R.id.pCN);
        pCycleNum.setText(String.valueOf(1));

        binding = FragmentActionBinding.inflate(inflater, container, false);
        return binding.getRoot();
    }

    public void onViewCreated(@NonNull View view, Bundle savedInstanceState) {
        super.onViewCreated(view, savedInstanceState);

        binding.buttonSecond.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                NavHostFragment.findNavController(ActionFragment.this)
                        .navigate(R.id.action_ActionFragment_to_LauncherFragment);
            }
        });

        binding.buttonAction.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
            pCycleNum.setText("5");
            }

        });
    }

我将 pCycleNum 设置为 5。但是当我在模拟器上运行该应用程序时,它没有显示任何更改。无法找出我哪里出错了。

片段XML如下

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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"
    android:background="@color/white"
    android:foregroundTint="@color/teal_700"
    tools:context=".ActionFragment">

    <Button
        android:id="@+id/button_second"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@color/teal_200"
        android:backgroundTint="#F57F17"
        android:text="@string/goback"
        android:textColor="@color/black"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.96"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toBottomOf="@id/textview_second"
        app:layout_constraintVertical_bias="0.96" />

    <TextView
        android:id="@+id/textview_second"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:backgroundTint="@color/teal_700"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintTop_toTopOf="parent" />


    <Button
        android:id="@+id/buttonAction"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginEnd="178dp"
        android:layout_marginStart="139dp"
        android:layout_marginTop="33dp"
        android:text="Button"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintHorizontal_bias="0.13"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:layout_constraintVertical_bias="0.97" />

    <TextView
        android:id="@+id/pCN"
        android:layout_width="174dp"
        android:layout_height="112dp"
        android:layout_marginStart="80dp"
        android:layout_marginTop="130dp"
        android:text="1"
        android:textColor="@color/teal_200"
        android:textSize="96sp"
        android:visibility="visible"
        app:layout_constraintStart_toEndOf="@+id/imageView13"
        app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

请帮我定位应用程序不显示设置值的错误。也帮助我理解为什么这样做。谢谢。

android textview
2个回答
1
投票

只需从 onCreateView() 方法中删除这些行即可。

View v = inflater.inflate(R.layout.fragment_action, container, false);
    pCycleNum = v.findViewById(R.id.pCN);
    pCycleNum.setText(String.valueOf(1));

然后使用

binding.pCN.setText("5");

发生这种情况是因为您同时使用 findViewById() 和视图绑定。 并且您将在 onCreateView() 方法中返回绑定。并且 onViewCreated() 方法不知道从哪里获取这个 pCN 文本视图,所以它只是跳过。


0
投票

您从

v
布局中通过id获得了一个textview,但随后膨胀了一个新布局,给出了对绑定的引用并返回了绑定视图,而不是您在

上使用findViewById的视图

为了避免此错误,只需从绑定对象中获取视图,您将通过它们的 id 名称找到它们(没有任何下划线字符“_”),就像我在

binding.pCN

中所做的那样
public class ActionFragment extends Fragment {

    private FragmentActionBinding binding;
    TextView pCycleNum;
    int pCycle;


    @Override
    public View onCreateView(
            LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState
    ) {
        binding = FragmentActionBinding.inflate(inflater, container, false);
        pCycleNum =binding.pCN;
        return binding.getRoot();
    }

    public void onViewCreated(@NonNull View view, Bundle savedInstanceState) {
        super.onViewCreated(view, savedInstanceState);

        binding.buttonSecond.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                NavHostFragment.findNavController(ActionFragment.this)
                        .navigate(R.id.action_ActionFragment_to_LauncherFragment);
            }
        });

        binding.buttonAction.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
            pCycleNum.setText("5");
            }

        });
    }
© www.soinside.com 2019 - 2024. All rights reserved.