繁体   English   中英

如何将数据从 Activity 传递到已创建的 Fragment?

[英]How to pass data from Activity to already created Fragment?

最近我被卡住了,我有一个 Activity(不是我的 MainActivity,我的意思是,它不是我创建这个 Fragment 的地方)。 我需要传递一些数据,我已经尝试使用 Bundle 传递,使用 getter:但出现了同样的问题。 “尝试在 null object 上调用虚拟方法 {...}。” 在我调用 Bundle in the Fragment 的那一行,我是新手。 所以如果这是一个简单的问题并且我不明白,我很抱歉:在我的代码的相关部分下方:

在活动(不是主要活动):

public void save(){
    myGoal = spinnerGoals.getSelectedItem().toString();

    Bundle bundle = new Bundle();
    bundle.putString("goal", myGoal);
    GoalFragment goalFragment = new GoalFragment();
    goalFragment.setArguments(bundle);
}

在片段上(我想把这个“目标”放在哪里)

private TextView goal;

@Nullable
@Override
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
    View view = inflater.inflate( R.layout.fragment_goal, container, false);
    goal = view.findViewById(R.id.myGoalText);

    Bundle bundle = getArguments();
    if (bundle != null) {
        final String myGoal = bundle.getString("goal");
        goal.setText(myGoal);
    }
    return view;
}

在 MainActivity(我创建片段的地方):

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    BottomNavigationView bottomNav = findViewById(R.id.bottom_navigation);
    bottomNav.setOnNavigationItemSelectedListener(navListener);
    getSupportFragmentManager().beginTransaction().replace(R.id.fragment_container, new HomeFragment() )
            .commit();
}

private BottomNavigationView.OnNavigationItemSelectedListener navListener =
        new BottomNavigationView.OnNavigationItemSelectedListener() {
            @Override
            public boolean onNavigationItemSelected(@NonNull MenuItem item) {
                Fragment selectedFragment = null;

                switch (item.getItemId()) {
                    case R.id.nav_home:
                        selectedFragment = new HomeFragment();
                        break;
                    case R.id.nav_goal:
                        selectedFragment = new GoalFragment();
                        break;
                    case R.id.nav_info:
                        selectedFragment = new InfoFragment();
                        break;
                }

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

                return true;
            }
};

拜托,我已经浪费了很多时间试图自己解决这个问题哈哈哈。 如果有人可以帮助我,我将不胜感激!

在 Fragment 中创建一个要接收数据的方法,然后在 Activity 中调用该方法。

在Activity中写下这段代码:

 Bundle bundle = new Bundle();
 bundle.putString("goal", myGoal);
 fragmentObj.sendData(bundle);

在 Fragment 中编写代码:

public void sendData(Bundle bundle){
      String myGoal = bundle.getString("goal");
}

如果活动(不是主要活动)是从您的片段创建的,您可以使用

startActivityForResult()

活动结束后接收数据的方法,在这里阅读更多

如果不是这种情况,您需要使用PreferencesRoom Database持久化(存储)数据

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM