ต้องการส่งค่าที่ได้จาก intent หนึ่งไปให้ fragment ค่ะ แต่ตัว fragment มีการใช้ FragmentPagerAdapter อยากรู้วิธีส่งค่าไปค่ะ โดยภาพรวมคือ Activity A (ต้องการส่ง String) ไปให้ fragment B
โดยทางผ่านมี FragmentActivity, FragmentPagerAdapter แล้วค่อยเป็น fragment B ค่ะ
ปล.โค้ดที่ทำเป็นโค้ดที่นำมาดัดแปลงอีกทีนึงเลยจำเป็นต้องใช้ fragment ค่ะ
ขอบคุณค่ะ
Tag : Mobile, Device (Mobile), Android, JAVA, Mobile
public static class DetailsActivity extends FragmentActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// (omitted some other stuff)
if (savedInstanceState == null) {
// During initial setup, plug in the details fragment.
DetailsFragment details = new DetailsFragment();
details.setArguments(getIntent().getExtras());
getSupportFragmentManager().beginTransaction().add(
android.R.id.content, details).commit();
}
}
}