我可以将 findViewById() 限制在单个片段的范围内吗?

Can I limit findViewById() to within the scope of an individual fragment?

在我的应用程序中,同一片段 Activity_Fragment 的多个实例显示在 LinearLayout 中。在每个片段中,有一个 activity_text 文本视图和一个 edit_button。当在片段中按下按钮时,它应该更改同一片段中文本视图的文本。但是,当添加片段的多个实例时,在任何片段中按下任何 edit_button 只会更改添加到 LinearLayout 的第一个片段中的 activity_text 文本视图。这是因为所有片段都是相同的,并且它们的子视图共享相同的 id。每个片段应该独立于另一个;在片段中按下的任何 edit_button 应该只会影响该片段。

是否可以将 findViewById() 方法限制在单个片段的范围内,以便一个片段不会受到另一个片段中事件的影响,或者我是否必须以某种方式更改每个片段的 ID创建时在片段中查看?

这是 Activity 片段 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="wrap_content"
        android:id="@+id/activity_fragment">

        <CheckBox
            android:id="@+id/checkbox"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginStart="32dp"
            android:layout_marginTop="16dp"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintTop_toTopOf="parent" />

        <TextView
            android:id="@+id/activity_text"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_marginEnd="5dp"
            android:layout_marginStart="16dp"
            android:layout_marginTop="16dp"
            android:text="Edit Activity"
            android:textSize="18sp"
            app:layout_constraintBaseline_toBaselineOf="@+id/checkbox"
            app:layout_constraintLeft_toRightOf="@+id/checkbox"
            app:layout_constraintRight_toLeftOf="@+id/edit_button"/>

        <Button
            android:id="@+id/edit_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginBottom="16dp"
            android:layout_marginEnd="16dp"
            android:layout_marginTop="16dp"
            android:onClick="editActivity"
            android:text="Edit Activity"
            app:layout_constraintBaseline_toBaselineOf="@+id/checkbox"
            app:layout_constraintRight_toRightOf="parent"/>

这是我的 MainActivity.java 和 Activity 片段 class。 edit_button 的 onClick 方法在最底部:

import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v7.app.AppCompatActivity;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;

public class MainActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }

    public static class ActivityFragment extends Fragment {
        @Override
        public View onCreateView(LayoutInflater inflater, ViewGroup 
        container, Bundle savedInstanceState) {
            // Inflate the layout for this fragment
            return inflater.inflate(R.layout.activity_fragment, container, 
            false);
        }
    }

    public void addActivity(View view) {
        ActivityFragment fragment1 = new ActivityFragment();
        getSupportFragmentManager().beginTransaction()
                .add(R.id.fragment_container, fragment1).commit();
    }

    //This is the editButton method
    public void editActivity(View view) {
        TextView activityText = (TextView) findViewById(R.id.activity_text);
        activityText.setText("success");
    }
}

您可以使用 view.findViewById(R.id.activity_text) 代替 activity 中的方法。

您的问题可以通过限制findViewById()扫描的范围来解决。如果您想查看特定片段,您可能需要调用 myFragment.getView().findViewById()(而不是仅使用 activity 中的 findViewById())。

那你怎么能这样做呢?好吧,你设置东西的方式并不容易。由于您使用 android:onClick 属性设置点击侦听器,因此您必须从 activity.

内部处理事情

所以不要使用 android:onClick

相反,在 Fragment 的 onCreateView() 方法中,编写如下内容:

@Nullable
@Override
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, Bundle savedInstanceState) {
    View root = inflater.inflate(R.layout.your_fragment, container, false);

    Button button = (Button) root.findViewById(R.id.edit_button);
    button.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            TextView activityText = (TextView) getView().findViewById(R.id.activity_text);
            activityText.setText("success");
        }
    });

    return root;
}