Home | History | Annotate | Download | only in hdrviewfinder

Lines Matching defs:args

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