https://github.com/santalu/diagonal-imageview
A simple imageview which allows you to create diagonal cut views easily
https://github.com/santalu/diagonal-imageview
android diagonal diagonal-imageview diagonalimage diagonalimageview diagonalview imageview
Last synced: about 1 year ago
JSON representation
A simple imageview which allows you to create diagonal cut views easily
- Host: GitHub
- URL: https://github.com/santalu/diagonal-imageview
- Owner: santalu
- License: apache-2.0
- Created: 2017-08-09T05:57:57.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2020-02-07T17:35:24.000Z (over 6 years ago)
- Last Synced: 2025-03-29T20:06:58.979Z (about 1 year ago)
- Topics: android, diagonal, diagonal-imageview, diagonalimage, diagonalimageview, diagonalview, imageview
- Language: Kotlin
- Size: 12.1 MB
- Stars: 257
- Watchers: 5
- Forks: 35
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Diagonal ImageView
[](https://jitpack.io/#santalu/diagonal-imageview) [](https://android-arsenal.com/details/1/6040) [](http://androidweekly.net/issues/issue-278) [](https://travis-ci.org/santalu/diagonal-imageview)
A simple imageview which allows you to create diagonal cut views easily
## Samples
## Usage
### Gradle
```
allprojects {
repositories {
maven { url 'https://jitpack.io' }
}
}
```
```
dependencies {
implementation 'com.github.santalu:diagonal-imageview:1.1.1'
}
```
### XML
```xml
```
## Attributes
| Name | Value |
| ------------- | -----:|
| di_start | top, right, bottom, left |
| di_end | top, right, bottom, left |
| di_distance | dimen |
| di_borderSize | dimen |
| di_borderColor | color |
| di_borderEnabled | true, false |
## Notes
* Set start `NONE` to disable masking
* After changing attributes call `invalidate()` or `postInvalidate()` to immediately apply changes
## License
```
Copyright 2017 Fatih Santalu
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.
```