Diagonal ImageView

Additional

Language
Kotlin
Version
1.1.1 (Feb 8, 2020)
Created
Aug 9, 2017
Updated
Feb 7, 2020 (Retired)
Owner
Fatih Santalu (santalu)
Contributor
Fatih Santalu (santalu)
1
Activity
Badge
Generate
Download
Source code

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

<com.santalu.diagonalimageview.DiagonalImageView
    android:id="@+id/image"
    android:layout_width="120dp"
    android:layout_height="120dp"
    android:scaleType="centerCrop"
    android:src="@drawable/demo"
    app:di_borderColor="@color/colorAccent"
    app:di_borderEnabled="true"
    app:di_borderSize="8dp"
    app:di_distance="56dp"
    app:di_end="left"
    app:di_start="bottom"/>

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.