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.
FragmentAがあり、そこから DialogFragment を開始します(EditTextボックス内にあります)。FragmentAから値を取得するにはどうすればよいEditTextですか? 私はこのようなものを作ろうとしていますが、うまくいきませんでした。
EditText
コールバック メソッドを介してダイアログからアクティビティにデータを送り返す必要があります。次に、アクティビティがそのデータを移動先のフラグメントに返すようにします。簡単な例:
public void datFromDialog(String data){ MyFragment mf = (MyFragment)getFragmentManager().findFragmentById(r.id.frag); mf.iWantNewData(data); }