2016-06-24 93 views
0

我嘗試使用appcompat和appcompat v23工作良好,但支持庫版本23有問題,我不得不下降到舊版本! 在使用程序兼容性V21作爲庫Eclipse中的錯誤,我這:Android appcompat v21不工作,但v23工作

android.support.v7.app.ActionBarActivity無法解決

,所以我不能使用工具欄

如何修理它 ?! 感謝

+0

您最常使用AppCompatActivity –

+0

@darushdary我在我的項目不知道程序兼容性庫(I程序兼容性添加爲庫太) – Aryan

+0

باشه。 میشهکدهاتونرونشنونبدید? –

回答

0

اینفایلبرنامهخودمهمیتونیکپیکنی

apply plugin: 'com.android.application' 

android { 
compileSdkVersion 23 
buildToolsVersion "23.0.3" 

defaultConfig { 
    renderscriptTargetApi 19 
    renderscriptSupportModeEnabled true 

    minSdkVersion 14 
    targetSdkVersion 23 
    versionCode 1 
    versionName "1.0" 
} 
buildTypes { 
    release { 
     minifyEnabled false 
     proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' 
    } 
} 
} 

    dependencies { 
compile fileTree(include: ['*.jar'], dir: 'libs') 
compile 'com.android.support:appcompat-v7:23.4.0' 
compile 'com.android.support:design:23.4.0' 
compile 'com.android.support:cardview-v7:23.4.0' 
compile 'com.android.support:recyclerview-v7:23.4.0' 

} 
相關問題