a zigzag view for using for ticket or invoice
allprojects {
repositories {
...
maven { url "https://jitpack.io" }
}
}
dependencies {
// old versions
// implementation 'com.github.beigirad:ZigzagView:VERSION'
implementation 'ir.beigirad:ZigzagView:VERSION'
}
<ir.beigirad.zigzagview.ZigzagView
android:layout_width="match_parent"
android:layout_height="240dp"
app:zigzagBackgroundColor="#8bc34a"
app:zigzagElevation="8dp"
app:zigzagHeight="10dp"
app:zigzagShadowAlpha="0.9"
app:zigzagSides="top|bottom|right|left"
app:zigzagPaddingContent="16dp">
// add child view(s)
</ir.beigirad.zigzagview.ZigzagView>
Attribute | Type | Default Value | Description |
---|---|---|---|
zigzagHeight | dimension | 0dp |
height of zigzag jags |
zigzagElevation | dimension | 0dp |
side of shadow |
zigzagBackgroundColor | color | Color.WHITE |
background color |
zigzagPaddingContent | dimension | 0dp |
content padding |
zigzagPadding | dimension | 0dp |
view padding |
zigzagPaddingLeft | dimension | zigzagPadding |
left side view |
zigzagPaddingRight | dimension | zigzagPadding |
right side view padding |
zigzagPaddingBottom | dimension | zigzagPadding |
bottom side view padding |
zigzagPaddingTop | dimension | zigzagPadding |
top side view padding |
zigzagSides | enum | bottom |
choosing zigzag sides (top,bottom,right,left) |
zigzagShadowAlpha | float | 0.5 |
amount of shadow transparency from [0,1.0] |
Reza Kardoost for helping me out with ZigzagView Shadow/Elevation.
Copyright 2018 Farhad Beigirad
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.