Karamunting.Android.Santalu.DiagonalImageView

A simple Android ImageView which allows you to create diagonal cut views easily


Keywords
android, android-library, droid, image, imageview, diagonal, diagonalimage, diagonalimageview, diagonal-imageview, diagonalview, mono, mono.droid, xamarin, xamarin-android, xamarin.android
License
Apache-2.0
Install
Install-Package Karamunting.Android.Santalu.DiagonalImageView -Version 1.0.8

Documentation

Diagonal ImageView

Android Arsenal Build Status

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.0'
}

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.