您好,登錄后才能下訂單哦!
要在Fragment之間傳遞數(shù)據(jù),可以通過Bundle來傳遞數(shù)據(jù)。以下是一個示例代碼:
在發(fā)送方Fragment中:
// 創(chuàng)建一個Bundle對象
Bundle bundle = new Bundle();
// 將數(shù)據(jù)放入Bundle
bundle.putString("key", "value");
// 創(chuàng)建一個接收方Fragment對象
ReceiverFragment receiverFragment = new ReceiverFragment();
receiverFragment.setArguments(bundle);
// 切換到接收方Fragment
getFragmentManager().beginTransaction()
.replace(R.id.container, receiverFragment)
.addToBackStack(null)
.commit();
在接收方Fragment中:
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
// 獲取傳遞過來的數(shù)據(jù)
Bundle bundle = getArguments();
if (bundle != null) {
String value = bundle.getString("key");
// 使用數(shù)據(jù)進行操作
textView.setText(value);
}
return view;
}
通過這種方式,可以在Fragment之間傳遞數(shù)據(jù)并在接收方Fragment中獲取并使用這些數(shù)據(jù)。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。