片段按钮影响同一片段的其他实例

时间:2017-07-12 18:56:26

标签: android android-fragments

我有一个按钮,可以在按下时添加片段ActivityFragment的实例。片段中有edit_button,按下后会更改片段中的activity_text文本视图。但是,当添加多个ActivityFragment实例时,任何片段中按下的任何edit_button只会影响添加的第一个ActivityFragment。我相信这种情况正在发生,因为每个片段共享相同的id,但是有没有办法解决这个问题,以便每个edit_button只影响它所在的​​片段,最好不要在创建时更改片段ID? / p>

这是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"/>

</android.support.constraint.ConstraintLayout>

以下是我的MainActivity.javaActivityFragmentedit_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 :(得分:0)

这种情况正在发生,因为您需要在视图中添加大量片段。你没有注意到因为所有这些都是彼此相等的。我想你必须改变这个:

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

到此:

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

您必须记住,当您添加时,会追加所有视图,并且findViewById将找到第一个视图。您可以从片段中删除 static

答案 1 :(得分:0)

使用这个:

getSupportFragmentManager().beginTransaction()
        .add(R.id.fragment_container, fragment1).commit();

您正在将片段叠加在另一个上。将其更改为

getSupportFragmentManager().beginTransaction()
        .replace(R.id.fragment_container, fragment1).commit();