Lines Matching refs:args
31 Bundle args = new Bundle(); in newInstance() local
32 args.putInt(ARG_MESSAGE_INT, message); in newInstance()
33 fragment.setArguments(args); in newInstance()
39 Bundle args = new Bundle(); in newInstance() local
40 args.putString(ARG_MESSAGE_STRING, message); in newInstance()
41 fragment.setArguments(args); in newInstance()
49 Bundle args = getArguments(); in onCreateDialog() local
50 if (args.containsKey(ARG_MESSAGE_INT)) { in onCreateDialog()
51 builder.setMessage(args.getInt(ARG_MESSAGE_INT)); in onCreateDialog()
52 } else if (args.containsKey(ARG_MESSAGE_STRING)) { in onCreateDialog()
53 builder.setMessage(args.getString(ARG_MESSAGE_STRING)); in onCreateDialog()