更新的Android版本(Marshmallow及以上版本)的延迟/动画问题

时间:2017-07-25 16:13:54

标签: android performance animation

我制作了一个包含各种自定义视图和多个片段的应用;问题是动画/翻译在android棒棒糖上是完美的,但在棉花糖和牛轧糖上,点击按钮和打开页面时会出现滞后/延迟,动画也有点慢。

我不确定问题是什么以及如何解决这个问题;如果需要,这是我的gradle文件:

apply plugin: 'com.android.application'

android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
    applicationId "com.app.myapp"
    minSdkVersion 19
    targetSdkVersion 25
    versionCode 1
    versionName "1.0"
    testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
    exclude group: 'com.android.support', module: 'support-annotations'
})



compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:support-v4:25.3.1'
compile 'com.android.support:recyclerview-v7:25.3.1'
compile 'com.android.support:cardview-v7:25.3.1'

compile 'de.hdodenhof:circleimageview:2.1.0'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.wefika:flowlayout:0.4.1'
compile 'com.github.lecho:hellocharts-library:1.5.8@aar'
compile 'com.github.stfalcon:chatkit:0.2.2'
compile 'uk.co.chrisjenx:calligraphy:2.3.0'

testCompile 'junit:junit:4.12'
}

修改: 有一件事我忘了提到:大多数情况下,第一次行动的滞后很明显。例如,在第一次按下聊天按钮时,加载了聊天片段并且存在延迟并且动画对于按钮来说并不完美;在第一张卡片向右滑动时,有轻微的口吃;在水平刷卡后的第一次垂直滑动中,垂直viewpager动画捕捉到位等。

0 个答案:

没有答案