Android-ScalableImageView

所属分类:Python编程
开发工具:Java
文件大小:0KB
下载次数:0
上传日期:2015-06-26 03:15:57
上 传 者sh-1993
说明:  ...,左侧底部修剪,中心顶部修剪,中心修剪,中心底部修剪,右侧顶部修剪,右侧中心修剪,右侧底部修剪,st...
(ScalableImageView has extra scale types of ImageView. Supported scale types are fitXY, fitStart, fitCenter, fitEnd, leftTop, leftCenter, leftBottom, centerTop, center, centerBottom, rightTop, rightCenter, rightBottom, leftTopCrop, leftCenterCrop, leftBottomCrop, centerTopCrop, centerCrop, centerBottomCrop, rightTopCrop, rightCenterCrop,)

文件列表:
LICENSE (11358, 2015-06-25)
build.gradle (507, 2015-06-25)
gradle.properties (821, 2015-06-25)
gradle/ (0, 2015-06-25)
gradle/wrapper/ (0, 2015-06-25)
gradle/wrapper/gradle-wrapper.jar (49896, 2015-06-25)
gradle/wrapper/gradle-wrapper.properties (232, 2015-06-25)
gradlew (5080, 2015-06-25)
gradlew.bat (2404, 2015-06-25)
library/ (0, 2015-06-25)
library/android-artifacts.gradle (605, 2015-06-25)
library/bintray-publish.gradle (2188, 2015-06-25)
library/build.gradle (1287, 2015-06-25)
library/src/ (0, 2015-06-25)
library/src/main/ (0, 2015-06-25)
library/src/main/AndroidManifest.xml (60, 2015-06-25)
library/src/main/java/ (0, 2015-06-25)
library/src/main/java/com/ (0, 2015-06-25)
library/src/main/java/com/yqritc/ (0, 2015-06-25)
library/src/main/java/com/yqritc/scalableimageview/ (0, 2015-06-25)
library/src/main/java/com/yqritc/scalableimageview/PivotPoint.java (255, 2015-06-25)
library/src/main/java/com/yqritc/scalableimageview/ScalableImageView.java (2424, 2015-06-25)
library/src/main/java/com/yqritc/scalableimageview/ScalableType.java (571, 2015-06-25)
library/src/main/java/com/yqritc/scalableimageview/ScaleManager.java (9168, 2015-06-25)
library/src/main/java/com/yqritc/scalableimageview/Size.java (371, 2015-06-25)
library/src/main/res/ (0, 2015-06-25)
library/src/main/res/values/ (0, 2015-06-25)
library/src/main/res/values/attrs.xml (1457, 2015-06-25)
sample/ (0, 2015-06-25)
sample/build.gradle (798, 2015-06-25)
sample/sample.gif (4425502, 2015-06-25)
sample/src/ (0, 2015-06-25)
sample/src/main/ (0, 2015-06-25)
sample/src/main/AndroidManifest.xml (752, 2015-06-25)
sample/src/main/java/ (0, 2015-06-25)
sample/src/main/java/com/ (0, 2015-06-25)
sample/src/main/java/com/yqritc/ (0, 2015-06-25)
sample/src/main/java/com/yqritc/scalableimageview/ (0, 2015-06-25)
... ...

# Android-ScalableImageView [![License](https://img.shields.io/badge/license-Apache%202-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0) [![Download](https://api.bintray.com/packages/yqritc/maven/android-scalableimageview/images/download.svg)](https://bintray.com/yqritc/maven/android-scalableimageview/_latestVersion) *__If you want to the same scale feature for video. [Check out ScalableVideoVIew](https://github.com/yqritc/Android-ScalableVideoView)__* Android ImageView having extra scale types. ![Sample](/sample/sample.gif) # Sample # Release Note [Release Note] (https://github.com/yqritc/Android-ScalableImageView/releases) # Gradle ``` repositories { jcenter() } dependencies { compile 'com.yqritc:android-scalableimageview:1.0.0' } ``` # Support Scale Types | ScaleType | ImageView | ScalableImageView | |:------------------|:---------:|:-----------------:| | fitXY ||| | fitStart ||| | fitCenter ||| | fitEnd ||| | leftTop |X|| | leftCenter |X|| | leftBottom |X|| | centerTop |X|| | center ||| | centerBottom |X|| | rightTop |X|| | rightCenter |X|| | rightBottom |X|| | leftTopCrop |X|| | leftCenterCrop |X|| | leftBottomCrop |X|| | centerTopCrop |X|| | centerCrop ||| | centerBottomCrop |X|| | rightTopCrop |X|| | rightCenterCrop |X|| | rightBottomCrop |X|| | startInside |X|| | centerInside ||| | endInside |X|| # Usage ### Set scale type in layout file ``` ``` Please refere the following xml for the list of scalableType you can set. [attrs.xml](https://github.com/yqritc/Android-ScalableImageView/blob/master/library/src/main/res/values/attrs.xml) ### Set scale type in source code ``` @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); mImageView = (ScalableImageView) findViewById(R.id.image_view); findViewById(R.id.btn_update_scale).setOnClickListener(this); } @Override public void onClick(View v) { switch (v.getId()) { case R.id.btn_update_scale: mImageView.setScalableType(ScalableType.CENTER_TOP_CROP); mImageView.requestLayout(); break; default: break; } } ``` # License ``` Copyright 2015 yqritc Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

近期下载者

相关文件


收藏者