Home | History | Annotate | Download | only in fragmenttransition

Lines Matching defs:args

60         Bundle args = new Bundle();
61 args.putInt(ARG_RESOURCE_ID, resourceId);
62 args.putString(ARG_TITLE, title);
63 args.putInt(ARG_X, x);
64 args.putInt(ARG_Y, y);
65 args.putInt(ARG_WIDTH, width);
66 args.putInt(ARG_HEIGHT, height);
67 fragment.setArguments(args);
91 Bundle args = getArguments();
93 if (args != null) {
95 args.getInt(ARG_WIDTH), args.getInt(ARG_HEIGHT));
96 params.topMargin = args.getInt(ARG_Y);
97 params.leftMargin = args.getInt(ARG_X);
113 Bundle args = getArguments();
114 if (args == null) {
118 image.setImageResource(args.getInt(ARG_RESOURCE_ID));
120 title.setText(args.getString(ARG_TITLE));