public static RadioFragment newInstance(int questionNumber, int persistedResponse) {
RadioFragment fragment = new RadioFragment();
Bundle b = new Bundle();
b.putInt(KEY_QUESTION, questionNumber);
b.putInt(KEY_PERSISTED_RESPONSE, persistedResponse);
fragment.setArguments(b);
return fragment;
}
0 件のコメント:
コメントを投稿