Skip to content

Commit

Permalink
更新RxUI配置
Browse files Browse the repository at this point in the history
  • Loading branch information
秋逸 committed Jul 2, 2018
1 parent 5a0776f commit 5e225bb
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 2 deletions.
4 changes: 2 additions & 2 deletions RxUI/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ dependencies {
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
compileOnly 'com.android.support:recyclerview-v7:27.1.1'
implementation project(':RxKit')
implementation 'com.github.bumptech.glide:glide:4.7.1'
compileOnly project(':RxKit')
compileOnly 'com.github.bumptech.glide:glide:4.7.1'
annotationProcessor 'com.github.bumptech.glide:compiler:4.7.1'
}
11 changes: 11 additions & 0 deletions RxUI/src/main/res/anim/push_down_out.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:duration="400"
android:fromYDelta="0"
android:toYDelta="100%p" />
<alpha
android:duration="500"
android:fromAlpha="1.0"
android:toAlpha="0.0" />
</set>
11 changes: 11 additions & 0 deletions RxUI/src/main/res/anim/push_up_in.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:duration="300"
android:fromYDelta="100%p"
android:toYDelta="0"/>
<alpha
android:duration="300"
android:fromAlpha="0.0"
android:toAlpha="1.0"/>
</set>

0 comments on commit 5e225bb

Please sign in to comment.