Skip to content

Commit 303107e

Browse files
AriesHooAriesHoo
authored andcommitted
1、新增:FastStackUtil Activity堆栈管理类出栈方法-避免因Activity短暂进入destroy后无法恢复状态问题
2、优化:全局生命周期回调FastLifecycleCallback 增加状态栏控制时TopView背景为空判断 3、优化:优化长时间驻留后台被系统回收后Fragment重叠问题。修改了tab库--直接集成到本地
1 parent 2d5f468 commit 303107e

31 files changed

+3605
-27
lines changed

FlycoTabLayout_Lib/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/build

FlycoTabLayout_Lib/build.gradle

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
apply plugin: 'com.android.library'
2+
version = "2.1.2"
3+
android {
4+
def ext = rootProject.ext
5+
compileSdkVersion ext.compileSdkVersion
6+
defaultConfig {
7+
minSdkVersion ext.minSdkVersion
8+
targetSdkVersion ext.targetSdkVersion
9+
versionCode 212
10+
versionName version
11+
}
12+
buildTypes {
13+
release {
14+
minifyEnabled false
15+
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
16+
}
17+
}
18+
}
19+
20+
dependencies {
21+
implementation fileTree(dir: 'libs', include: ['*.jar'])
22+
implementation 'com.android.support:support-v4:'.concat(supportVersion)
23+
}

FlycoTabLayout_Lib/proguard-rules.pro

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Add project specific ProGuard rules here.
2+
# By default, the flags in this file are appended to flags specified
3+
# in /Users/lihui/work/AndroidStudio/sdk/tools/proguard/proguard-android.txt
4+
# You can edit the include path and order by changing the proguardFiles
5+
# directive in build.gradle.
6+
#
7+
# For more details, see
8+
# http://developer.android.com/guide/developing/tools/proguard.html
9+
10+
# Add any project specific keep options here:
11+
12+
# If your project uses WebView with JS, uncomment the following
13+
# and specify the fully qualified class name to the JavaScript interface
14+
# class:
15+
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
16+
# public *;
17+
#}
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<manifest
2+
package="com.flyco.tablayout">
3+
</manifest>

FlycoTabLayout_Lib/src/main/java/com/flyco/tablayout/CommonTabLayout.java

Lines changed: 957 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)