An android library to implement dragging to disappear(explode) feature
Download sample app.
Add the JitPack repository to your root build file:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Add OffDutyView to your dependencies:
dependencies {
implementation 'in.nerd-is:OffDutyView:1.0.0'
}
Use OffDutyView as a normal view:
<in.nerd_is.offdutyview.OffDutyView
android:id="@+id/offDutyView"
android:layout_width="16dp"
android:layout_height="16dp"
android:layout_marginTop="32dp"
android:background="@drawable/red_dot_bg"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/btnReset"
app:oddBezierColor="#41e9ff"
app:oddMaxDistance="128dp" />
offDutyView.setOnOffDutyListener {
Toast.makeText(this, "Off duty!", Toast.LENGTH_SHORT).show()
}
offDutyView.setOnCancelListener {
Toast.makeText(this, "Off duty canceled", Toast.LENGTH_SHORT).show()
}
btnReset.setOnClickListener {
offDutyView.resetView()
}
If you want to show some text, e.g. a number, use OffDutyTextView instead.
You can also add OffDuty feature to other views easily, refer to OffDutyImageView.
Copyright 2019 Xuqiang ZHENG
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.