จะถ่ายโอนข้อมูลบางส่วนไปยัง Fragment อื่นได้อย่างไร


194

วิธีการถ่ายโอนข้อมูลบางอย่างไปยังอีกFragmentเช่นเดียวกันก็ทำextrasเพื่อintents?


ฉันพยายามที่จะตอบคำถามนี้ @ ที่นี่ ฉันหวังว่าจะได้ผล
ozhanli

คำตอบ:


482

Bundleการใช้งาน นี่คือตัวอย่าง:

Fragment fragment = new Fragment();
Bundle bundle = new Bundle();
bundle.putInt(key, value);
fragment.setArguments(bundle);

บันเดิลได้วางวิธีสำหรับประเภทข้อมูลจำนวนมาก ดูนี่สิ

จากนั้นในของคุณFragmentให้ดึงข้อมูล (เช่นในonCreate()วิธีการ) ด้วย:

Bundle bundle = this.getArguments();
if (bundle != null) {
        int myInt = bundle.getInt(key, defaultValue);
}

1
สวัสดี thanx สำหรับคำตอบของคุณ แต่เราจำเป็นต้องใช้อะไรเช่น Serializable หรือ Parcelable
Ankit Srivastava

ไม่คุณไม่จำเป็นต้องใช้คลาสใด ๆ
ยีน

2
อาจต้องการเพิ่มการตรวจสอบเพื่อดูบันเดิลนั้น! = ว่างเปล่าก่อนที่คุณจะพยายามเอาอะไรออกไป
Niels

และถ้าคุณมีแฟรกเมนต์ที่มีอยู่ในหน่วยความจำ
powder366

นี่คือรหัสไม่ทำงานไม่เปลี่ยนเส้นทางกิจกรรมเพื่อแยกส่วนกับข้อมูล
Venkatesh

44

ในการขยายคำตอบก่อนหน้านี้ให้มากยิ่งขึ้นเช่น Ankit กล่าวว่าสำหรับวัตถุที่ซับซ้อนคุณจำเป็นต้องใช้ Serializable ตัวอย่างเช่นสำหรับวัตถุอย่างง่าย:

public class MyClass implements Serializable {
    private static final long serialVersionUID = -2163051469151804394L;
    private int id;
    private String created;
}

ในตัวคุณ FromFragment:

Bundle args = new Bundle();
args.putSerializable(TAG_MY_CLASS, myClass);
Fragment toFragment = new ToFragment();
toFragment.setArguments(args);
getFragmentManager()
    .beginTransaction()
    .replace(R.id.body, toFragment, TAG_TO_FRAGMENT)
    .addToBackStack(TAG_TO_FRAGMENT).commit();

ใน ToFragment ของคุณ:

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

    Bundle args = getArguments();
    MyClass myClass = (MyClass) args
        .getSerializable(TAG_MY_CLASS);

คุณเป็นคนที่ดีที่สุดขอบคุณ
แฮช

1
@Sameera ฉันมักจะใส่สตริงด้วยคลาสแฟรกเมนต์ของฉันเช่นถ้าฉันมีคลาส MyFragmentIMGoingTo.java แล้ว TAG_TO_FRAGMENT ของฉัน = "MyFragmentIMGoingTo";
mike.tihonchik

ใช้ Parcelable ได้ดีขึ้นตามที่ Google แนะนำให้เป็นเทคนิคการทำให้เป็นอันดับที่ดีขึ้นสำหรับระบบปฏิบัติการ Android
อัญมณี

16

getArguments () ส่งคืน null เนื่องจาก "ไม่ได้รับอะไรเลย"

ลองใช้รหัสนี้เพื่อจัดการกับสถานการณ์นี้

if(getArguments()!=null)
{
int myInt = getArguments().getInt(key, defaultValue);
}

สวัสดี thanx สำหรับคำตอบของคุณ แต่เราจำเป็นต้องใช้อะไรเช่น Serializable หรือ Parcelable
Ankit Srivastava

คุณแน่ใจหรือไม่เพราะฉันต้องใช้ Serializable / Parcelable เมื่อฉันส่งข้อมูลที่ซับซ้อนระหว่างชิ้นส่วนและกิจกรรมโดยใช้ความตั้งใจ ......
Ankit Srivastava

ฉันลองด้วยค่าง่าย ๆ เท่านั้น ไม่มีความคิดเกี่ยวกับ Serializable หรือ Parcelable ขออภัย
Sakthimuthiah

1
มันควรจะเป็นความคิดเห็นที่ไม่ตอบ !!
อัญมณี

14

รหัสที่สมบูรณ์ของการส่งผ่านข้อมูลโดยใช้ส่วนเพื่อชิ้นส่วน

Fragment fragment = new Fragment(); // replace your custom fragment class 
Bundle bundle = new Bundle();
FragmentTransaction fragmentTransaction = getSupportFragmentManager().beginTransaction();
                bundle.putString("key","value"); // use as per your need
                fragment.setArguments(bundle);
                fragmentTransaction.addToBackStack(null);
                fragmentTransaction.replace(viewID,fragment);
                fragmentTransaction.commit();

ในคลาสแฟรกเมนต์ที่กำหนดเอง

Bundle mBundle = new Bundle();
mBundle = getArguments();
mBundle.getString(key);  // key must be same which was given in first fragment

จะรับ viewID ได้ที่ไหน
ฮู

@Hoo: โปรดระบุคำถามของคุณว่าคุณต้องการถามอะไร
Anand Savjani

คุณสามารถช่วยฉันได้ไหม? stackoverflow.com/questions/32983033/…
Hoo

5

เพียงเพื่อขยายคำตอบก่อนหน้า - มันสามารถช่วยใครบางคน หากgetArguments()ผลตอบแทนของคุณnullให้ใส่onCreate()วิธีการและไม่สร้างชิ้นส่วนของคุณ:

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    int index = getArguments().getInt("index");
}

1
            First Fragment Sending String To Next Fragment
            public class MainActivity extends AppCompatActivity {
                    private Button Add;
                    private EditText edt;
                    FragmentManager fragmentManager;
                    FragClass1 fragClass1;


                    @Override
                    protected void onCreate(Bundle savedInstanceState) {
                        super.onCreate(savedInstanceState);
                        setContentView(R.layout.activity_main);
                        Add= (Button) findViewById(R.id.BtnNext);
                        edt= (EditText) findViewById(R.id.editText);

                        Add.setOnClickListener(new View.OnClickListener() {
                            @Override
                            public void onClick(View v) {
                                fragClass1=new FragClass1();
                                Bundle bundle=new Bundle();

                                fragmentManager=getSupportFragmentManager();
                                fragClass1.setArguments(bundle);
                                bundle.putString("hello",edt.getText().toString());
                                FragmentTransaction fragmentTransaction=fragmentManager.beginTransaction();
                                fragmentTransaction.add(R.id.activity_main,fragClass1,"");
                                fragmentTransaction.addToBackStack(null);
                                fragmentTransaction.commit();

                            }
                        });
                    }
                }
         Next Fragment to fetch the string.
            public class FragClass1 extends Fragment {
                  EditText showFrag1;


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

                        View view=inflater.inflate(R.layout.lay_frag1,null);
                        showFrag1= (EditText) view.findViewById(R.id.edtText);
                        Bundle bundle=getArguments();
                        String a=getArguments().getString("hello");//Use This or The Below Commented Code
                        showFrag1.setText(a);
                        //showFrag1.setText(String.valueOf(bundle.getString("hello")));
                        return view;
                    }
                }
    I used Frame Layout easy to use.
    Don't Forget to Add Background color or else fragment will overlap.
This is for First Fragment.
    <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:id="@+id/activity_main"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:paddingBottom="@dimen/activity_vertical_margin"
        android:paddingLeft="@dimen/activity_horizontal_margin"
        android:paddingRight="@dimen/activity_horizontal_margin"
        android:paddingTop="@dimen/activity_vertical_margin"
        android:background="@color/colorPrimary"
        tools:context="com.example.sumedh.fragmentpractice1.MainActivity">

        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:id="@+id/editText" />
        <Button
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:id="@+id/BtnNext"/>
    </FrameLayout>


Xml for Next Fragment.
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
   android:background="@color/colorAccent"
    android:layout_height="match_parent">
    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/edtText"/>

</LinearLayout>

3
อธิบายคำตอบของคุณ? รหัสโดยไม่มีคำอธิบายใด ๆ จะไม่ช่วยอะไรมาก
Coder

ฉันเขียนโค้ดในโฟลว์เพื่อให้เข้าใจได้ ..... การส่งข้อมูลจากกิจกรรมหลักไปยัง FragClass1 ด้วยการใช้บันเดิล
Sumedh Ulhe

1

จากชั้นเรียนกิจกรรม:

ส่งข้อมูลโดยใช้อาร์กิวเมนต์กลุ่มเพื่อชิ้นส่วนและโหลดชิ้นส่วน

   Fragment fragment = new myFragment();
   Bundle bundle = new Bundle();
   bundle.putString("pName", personName);
   bundle.putString("pEmail", personEmail);
   bundle.putString("pId", personId);
   fragment.setArguments(bundle);

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

จาก myFragment Class:

รับอาร์กิวเมนต์จากบันเดิลและตั้งค่าเป็น xml

    Bundle arguments = getArguments();
    String personName = arguments.getString("pName");
    String personEmail = arguments.getString("pEmail");
    String personId = arguments.getString("pId");

    nameTV = v.findViewById(R.id.name);
    emailTV = v.findViewById(R.id.email);
    idTV = v.findViewById(R.id.id);

    nameTV.setText("Name: "+ personName);
    emailTV.setText("Email: "+ personEmail);
    idTV.setText("ID: "+ personId);

โปรดอ่านคำถามอีกครั้งมันเกี่ยวกับการแตก
แฟรกเมนต์

1

นี่คือวิธีที่คุณใช้มัด:

Bundle b = new Bundle();
b.putInt("id", id);
Fragment frag= new Fragment();
frag.setArguments(b);

ดึงค่าจากบันเดิล:

 bundle = getArguments();
 if (bundle != null) {
    id = bundle.getInt("id");
 }

0

ส่วนการป้อนข้อมูลของคุณ

public class SecondFragment extends Fragment  {


    EditText etext;
    Button btn;
    String etex;
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View v = inflater.inflate(R.layout.secondfragment, container, false);
        etext = (EditText) v.findViewById(R.id.editText4);
        btn = (Button) v.findViewById(R.id.button);
        btn.setOnClickListener(mClickListener);
        return v;
    }

    View.OnClickListener mClickListener = new View.OnClickListener() {
        @Override
        public void onClick(View v) {


            etex = etext.getText().toString();
            FragmentTransaction transection = getFragmentManager().beginTransaction();
            Viewfragment mfragment = new Viewfragment();
            //using Bundle to send data
            Bundle bundle = new Bundle();
            bundle.putString("textbox", etex);
            mfragment.setArguments(bundle); //data being send to SecondFragment
            transection.replace(R.id.frame, mfragment);
            transection.isAddToBackStackAllowed();
            transection.addToBackStack(null);
            transection.commit();

        }
    };



}

ส่วนการมองของคุณ

public class Viewfragment extends Fragment {

    TextView txtv;
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View v = inflater.inflate(R.layout.viewfrag,container,false);
        txtv = (TextView)  v.findViewById(R.id.textView4);
        Bundle bundle=getArguments();
        txtv.setText(String.valueOf(bundle.getString("textbox")));
        return v;
    }


}

0

หากคุณใช้กราฟสำหรับการนำทางระหว่างแฟรกเมนต์คุณสามารถทำได้: จากแฟรกเมนต์ A:

    Bundle bundle = new Bundle();
    bundle.putSerializable(KEY, yourObject);
    Navigation.findNavController(view).navigate(R.id.contactExtendedFragment, bundle);

ไปยังส่วน B:

    Bundle bundle = getArguments();
    contact = (DISContact) bundle.getSerializable(KEY);

แน่นอนว่าวัตถุของคุณจะต้องติดตั้ง Serializable

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.