将android studio更新为2.3版本后,TabLayout崩溃

时间:2017-04-13 10:38:08

标签: android android-studio-2.3

我已经搜索过这个问题,但是每个人都说它已经在android支持库23.2.1中解决了。但我正在使用23.2.1只有我的应用程序仍在崩溃。

  

java.lang.IllegalArgumentException:Tab属于不同的   TabLayout。                                                                                     在android.support.design.widget.TabLayout.addTab(TabLayout.java:433)                                                                                     在   android.support.design.widget.TabLayout.populateFromPagerAdapter(TabLayout.java:772)                                                                                     在   android.support.design.widget.TabLayout.access $ 2700型(TabLayout.java:124)                                                                                     在   android.support.design.widget.TabLayout $ PagerAdapterObserver.onChanged(TabLayout.java:2008)                                                                                     在   android.database.DataSetObservable.notifyChanged(DataSetObservable.java:37)                                                                                     在   android.support.v4.view.PagerAdapter.notifyDataSetChanged(PagerAdapter.java:282)

我的项目依赖关系:

dependencies {
    compile fileTree(include: ['*.jar'], dir: 'libs')
    testCompile 'junit:junit:4.12'
    compile('cn.trinea.android.view.autoscrollviewpager:android-auto-scroll-view-pager:1.1.2') {
        exclude module: 'support-v4'
    }
    compile project(':PayU-release')
    compile project(':pgwrapper')
    compile project(':CustomBrowser-release')
    compile 'org.jsoup:jsoup:1.8.3'
    compile 'com.android.support:multidex:1.0.0'
    compile 'com.viewpagerindicator:library:2.4.1'
    compile('com.crashlytics.sdk.android:crashlytics:2.6.1@aar') {
        transitive = true;
    }
    compile fileTree(include: ['*.jar'], dir: 'libs')
    testCompile 'junit:junit:4.12'
    compile 'com.facebook.android:facebook-android-sdk:4.16.0'
    compile 'com.squareup.picasso:picasso:2.5.2'
    compile 'com.android.support:appcompat-v7:23.2.0'
    compile 'com.mixpanel.android:mixpanel-android:4.6.4'
    compile 'com.google.android.gms:play-services-analytics:8.3.0'
    compile('cn.trinea.android.view.autoscrollviewpager:android-auto-scroll-view-pager:1.1.2') {
        exclude module: 'support-v4'
    }
    compile 'org.lucasr.twowayview:twowayview:0.1.4'
    compile 'com.ogaclejapan.smarttablayout:library:1.6.0@aar'
    compile 'com.payu.magicretry:magicretry:1.0.0'
    compile 'com.google.code.gson:gson:2.2.4'
    compile 'com.android.support:design:23.2.0'
    compile 'com.android.support:cardview-v7:23.2.1'
    compile 'com.android.support:recyclerview-v7:23.2.1'
    compile 'com.google.android.gms:play-services:8.3.0'
    compile 'com.google.android.gms:play-services-ads:8.3.0'
    compile 'com.google.android.gms:play-services-identity:8.3.0'
    compile 'com.android.support:appcompat-v7:23.2.1'
    compile 'com.mcxiaoke.volley:library:1.0.19'
    compile 'com.squareup.okhttp:okhttp:2.5.0'
    compile 'com.squareup.okio:okio:1.6.0'
    compile 'com.squareup.okhttp:okhttp-urlconnection:2.5.0'
    compile 'com.github.bumptech.glide:glide:3.7.0'
}

0 个答案:

没有答案