Home | History | Annotate | Download | only in transition

Lines Matching defs:addTarget

979      * <code>transitionSet.addTransitions(new Fade()).addTarget(someId);</code>
981 public Transition addTarget(int targetId) {
1003 * <code>transitionSet.addTransitions(new Fade()).addTarget(someName);</code>
1005 public Transition addTarget(String targetName) {
1026 * @see #addTarget(int)
1027 * @see #addTarget(android.view.View)
1035 * <code>transitionSet.addTransitions(new Fade()).addTarget(ImageView.class);</code>
1037 public Transition addTarget(Class targetType) {
1295 * <p>The target list is like the {@link #addTarget(int) targetId}
1300 * should treat those views as the same, then {@link #addTarget(int)} should be used
1301 * instead of {@link #addTarget(View)}. If, on the other hand, scene changes involve
1306 * @see #addTarget(int)
1311 * <code>transitionSet.addTransitions(new Fade()).addTarget(someView);</code>
1313 public Transition addTarget(View target) {