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

时间:2017-07-27 14:51:45

标签: android android-fragments findviewbyid android-identifiers

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

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

这是Activity Fragment 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和ActivityFragment类。 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");
    }
}

2 个答案:

答案 0 :(得分:1)

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

那你怎么能这样做?嗯,你设置的方式并不容易。由于您使用android:onClick属性设置点击侦听器,因此您必须处理活动内部的内容。

所以不要使用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;
}

答案 1 :(得分:0)

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