-
Notifications
You must be signed in to change notification settings - Fork 266
Home
Yeoh edited this page Dec 28, 2018
·
10 revisions
Using FragmentRigger
guide.
If you have any question when you are using this library?
-
FragmentRigger only supports
android.support.v4.app.Fragment
andandroid.support.v4.app.FragmentActivity
.This library is not supported as yourFragment/Activity
is not extend those classes. -
FragmentRigger support
SDK12+
. -
FragmentRigger support
Java
language for now.Kotlin
will be supported in future.
This library is powered by
AspectJ
,you must config theAspectJ
library if you wanna to use this library.
buildscript {
dependencies {
...
classpath "com.hujiang.aspectjx:gradle-android-plugin-aspectjx:2.0.4"
classpath 'org.aspectj:aspectjtools:1.8.13'
}
}
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
apply plugin: 'android-aspectjx'
android{
...
}
library | latest version |
---|---|
FragmentRigger |
'com.justkiddingbaby:fragment-rigger:lastest version'
Don't forget turn off Instant Run
- Installation
- Using start
- Fragment usage
- Custom fragment tag
- Lazy loading
- Transition animations
- Intercept onBackPressed
- startFragmentForResult
- Swipe edge to exit
- How to use in library module