我有一个活动,该活动从另一个活动中接收捆绑销售商品。该捆绑包是一个简单的url字符串。接收活动使用getSupportFragmentManager
启动一个片段,如下所示,该片段可以正常工作。
我想将url字符串传递给片段,但是找不到解决方法。我看到的所有示例都使用不同的模式来启动片段。任何建议表示赞赏!
请参阅我的评论,为什么它与另一个问题不完全相同。
import androidx.appcompat.app.AppCompatActivity;
import android.graphics.Color;
import android.graphics.drawable.ColorDrawable;
import android.os.Bundle;
import android.widget.Toast;
import androidx.appcompat.widget.Toolbar;
public class GalleryActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_gallery);
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
getSupportActionBar().setBackgroundDrawable(
new ColorDrawable(Color.parseColor("#273134")));
//Get the URL string from the calling activity
String url = super.getIntent().getExtras().getString("urlString");
Toast.makeText(this, "URL String is: " + url, Toast.LENGTH_LONG).show();
/*
Here is a new bundle. How do we get this passed to the new fragment?
Bundle bundle = new Bundle();
bundle.putString("url", url);
*/
getSupportFragmentManager()
.beginTransaction()
.add(R.id.content, RecyclerViewFragment.newInstance())
.commit();
}
}
答案 0 :(得分:0)
您可以使用片段实例上的setArguments
在片段中设置捆绑软件。您可以在docs中找到更多信息。
例如:
Fragment fragment = RecyclerViewFragment.newInstance();
Bundle bundle = new Bundle();
bundle.putString("url", url);
fragment.setArguments(bundle);
getSupportFragmentManager()
.beginTransaction()
.add(R.id.content, fragment)
.commit();
并在您的onCreate
或onCreateView
中的片段中使用:
String url = getArguments().getString("url")
stackoverflow中已回答的问题:setArguments - getArguments