Java Code Examples for android.widget.ImageView.ScaleType#name()

The following examples show how to use android.widget.ImageView.ScaleType#name() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PhotoViewAttacher.java    From school_shop with MIT License 5 votes vote down vote up
/**
 * @return true if the ScaleType is supported.
 */
private static boolean isSupportedScaleType(final ScaleType scaleType) {
	if (null == scaleType) {
		return false;
	}

	switch (scaleType) {
	case MATRIX:
		throw new IllegalArgumentException(scaleType.name() + " is not supported in PhotoView");

	default:
		return true;
	}
}
 
Example 2
Source File: PhotoViewAttacher.java    From Dashboard with MIT License 5 votes vote down vote up
/**
 * @return true if the ScaleType is supported.
 */
private static boolean isSupportedScaleType(final ScaleType scaleType) {
    if (null == scaleType) {
        return false;
    }

    switch (scaleType) {
        case MATRIX:
            throw new IllegalArgumentException(scaleType.name()
                    + " is not supported in PhotoView");

        default:
            return true;
    }
}
 
Example 3
Source File: CropPhotoViewAttacher.java    From ImageSelector with Apache License 2.0 5 votes vote down vote up
/**
* @return true if the ScaleType is supported.
*/
  private static boolean isSupportedScaleType(final ScaleType scaleType) {
   if (null == scaleType) {
	   return false;
   }

   switch (scaleType) {
	   case MATRIX:
		   throw new IllegalArgumentException(scaleType.name()
				   + " is not supported in PhotoView");

	   default:
		   return true;
   }
  }
 
Example 4
Source File: PhotoViewAttacher.java    From Nimingban with Apache License 2.0 5 votes vote down vote up
/**
 * @return true if the ScaleType is supported.
 */
private static boolean isSupportedScaleType(final ScaleType scaleType) {
    if (null == scaleType) {
        return false;
    }

    switch (scaleType) {
        case MATRIX:
            throw new IllegalArgumentException(scaleType.name()
                    + " is not supported in PhotoView");

        default:
            return true;
    }
}
 
Example 5
Source File: PhotoViewAttacher.java    From zen4android with MIT License 5 votes vote down vote up
/**
 * @return true if the ScaleType is supported.
 */
private static boolean isSupportedScaleType(final ScaleType scaleType) {
    if (null == scaleType) {
        return false;
    }

    switch (scaleType) {
        case MATRIX:
            throw new IllegalArgumentException(scaleType.name()
                    + " is not supported in PhotoView");

        default:
            return true;
    }
}
 
Example 6
Source File: PhotoViewAttacher.java    From Tweetin with Apache License 2.0 5 votes vote down vote up
/**
 * @return true if the ScaleType is supported.
 */
private static boolean isSupportedScaleType(final ScaleType scaleType) {
    if (null == scaleType) {
        return false;
    }

    switch (scaleType) {
        case MATRIX:
            throw new IllegalArgumentException(scaleType.name()
                    + " is not supported in PhotoView");

        default:
            return true;
    }
}
 
Example 7
Source File: PhotoViewAttacher.java    From aurora-imui with MIT License 5 votes vote down vote up
/**
 * @return true if the ScaleType is supported.
 */
private static boolean isSupportedScaleType(final ScaleType scaleType) {
	if (null == scaleType) {
		return false;
	}

	switch (scaleType) {
		case MATRIX:
			throw new IllegalArgumentException(scaleType.name() + " is not supported in PhotoView");

		default:
			return true;
	}
}
 
Example 8
Source File: PhotoViewAttacher.java    From Study_Android_Demo with Apache License 2.0 5 votes vote down vote up
/**
 * @return true if the ScaleType is supported.
 */
private static boolean isSupportedScaleType(final ScaleType scaleType) {
	if (null == scaleType) {
		return false;
	}

	switch (scaleType) {
	case MATRIX:
		throw new IllegalArgumentException(scaleType.name() + " is not supported in PhotoView");

	default:
		return true;
	}
}
 
Example 9
Source File: PhotoViewAttacher.java    From UltimateAndroid with Apache License 2.0 5 votes vote down vote up
/**
 * @return true if the ScaleType is supported.
 */
private static boolean isSupportedScaleType(final ScaleType scaleType) {
    if (null == scaleType) {
        return false;
    }

    switch (scaleType) {
        case MATRIX:
            throw new IllegalArgumentException(scaleType.name()
                    + " is not supported in PhotoView");

        default:
            return true;
    }
}
 
Example 10
Source File: PhotoViewAttacher.java    From Dashboard with MIT License 5 votes vote down vote up
/**
 * @return true if the ScaleType is supported.
 */
private static boolean isSupportedScaleType(final ScaleType scaleType) {
    if (null == scaleType) {
        return false;
    }

    switch (scaleType) {
        case MATRIX:
            throw new IllegalArgumentException(scaleType.name()
                    + " is not supported in PhotoView");

        default:
            return true;
    }
}
 
Example 11
Source File: PhotoViewAttacher.java    From star-zone-android with Apache License 2.0 5 votes vote down vote up
/**
 * @return true if the ScaleType is supported.
 */
private static boolean isSupportedScaleType(final ScaleType scaleType) {
    if (null == scaleType) {
        return false;
    }

    switch (scaleType) {
        case MATRIX:
            throw new IllegalArgumentException(scaleType.name()
                                                       + " is not supported in PhotoView");

        default:
            return true;
    }
}
 
Example 12
Source File: PhotoViewAttacher.java    From monolog-android with MIT License 5 votes vote down vote up
/**
 * @return true if the ScaleType is supported.
 */
private static boolean isSupportedScaleType(final ScaleType scaleType) {
	if (null == scaleType) {
		return false;
	}

	switch (scaleType) {
	case MATRIX:
		throw new IllegalArgumentException(scaleType.name() + " is not supported in PhotoView");

	default:
		return true;
	}
}
 
Example 13
Source File: ImageViewScaler.java    From MultiView with Apache License 2.0 5 votes vote down vote up
/**
 * @return true if the ScaleType is supported.
 */
private static boolean isSupportedScaleType(final ScaleType scaleType) {
    if (null == scaleType) {
        return false;
    }

    switch (scaleType) {
        case MATRIX:
            throw new IllegalArgumentException(scaleType.name()
                    + " is not supported in PhotoView");

        default:
            return true;
    }
}
 
Example 14
Source File: PhotoViewAttacher.java    From RotatePhotoView with Apache License 2.0 5 votes vote down vote up
/**
 * @return true if the ScaleType is supported.
 */
private static boolean isSupportedScaleType(final ScaleType scaleType) {
    if (null == scaleType) {
        return false;
    }

    switch (scaleType) {
        case MATRIX:
            throw new IllegalArgumentException(scaleType.name()
                    + " is not supported in PhotoView");

        default:
            return true;
    }
}
 
Example 15
Source File: PhotoViewAttacher.java    From UltimateAndroid with Apache License 2.0 5 votes vote down vote up
/**
 * @return true if the ScaleType is supported.
 */
private static boolean isSupportedScaleType(final ScaleType scaleType) {
    if (null == scaleType) {
        return false;
    }

    switch (scaleType) {
        case MATRIX:
            throw new IllegalArgumentException(scaleType.name()
                    + " is not supported in PhotoView");

        default:
            return true;
    }
}
 
Example 16
Source File: PhotoViewAttacher.java    From iBeebo with GNU General Public License v3.0 5 votes vote down vote up
/**
 * @return true if the ScaleType is supported.
 */
private static boolean isSupportedScaleType(final ScaleType scaleType) {
    if (null == scaleType) {
        return false;
    }

    switch (scaleType) {
        case MATRIX:
            throw new IllegalArgumentException(scaleType.name() + " is not supported in PhotoView");

        default:
            return true;
    }
}
 
Example 17
Source File: PhotoViewAttacher.java    From Android with MIT License 5 votes vote down vote up
/**
 * @return true if the ScaleType is supported.
 */
private static boolean isSupportedScaleType(final ScaleType scaleType) {
    if (null == scaleType) {
        return false;
    }

    switch (scaleType) {
        case MATRIX:
            throw new IllegalArgumentException(scaleType.name()
                    + " is not supported in PhotoView");

        default:
            return true;
    }
}
 
Example 18
Source File: PhotoViewAttacher.java    From o2oa with GNU Affero General Public License v3.0 5 votes vote down vote up
/**
 * @return true if the ScaleType is supported.
 */
private static boolean isSupportedScaleType(final ScaleType scaleType) {
	if (null == scaleType) {
		return false;
	}

	switch (scaleType) {
		case MATRIX:
			throw new IllegalArgumentException(scaleType.name() + " is not supported in PhotoView");

		default:
			return true;
	}
}
 
Example 19
Source File: PhotoViewAttacher.java    From android-discourse with Apache License 2.0 5 votes vote down vote up
/**
 * @return true if the ScaleType is supported.
 */
private static boolean isSupportedScaleType(final ScaleType scaleType) {
    if (null == scaleType) {
        return false;
    }

    switch (scaleType) {
        case MATRIX:
            throw new IllegalArgumentException(scaleType.name() + " is not supported in PhotoView");

        default:
            return true;
    }
}
 
Example 20
Source File: PhotoViewAttacher.java    From imsdk-android with MIT License 5 votes vote down vote up
/**
 * @return true if the ScaleType is supported.
 */
private static boolean isSupportedScaleType(final ScaleType scaleType) {
    if (null == scaleType) {
        return false;
    }

    switch (scaleType) {
        case MATRIX:
            throw new IllegalArgumentException(scaleType.name()
                    + " is not supported in PhotoView");

        default:
            return true;
    }
}