Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
フラグメントを自分でリフレッシュすることは可能ですか? アクティビティのように
context.finish(); context.startActivity(context.getIntent());
私はテストしていませんが、おそらく次のようなものです
getActivity().getSupportFragmentManager().beginTransaction() .replace(R.id.the_fragment_container, new MyFragment()) .commit();