2017-08-24 34 views
0

添加支持設計時出現錯誤渲染出現問題,然後添加庫,並使用API​​ 26,並且我已經在reporesetires中添加了maven,並添加了依賴項但存在相同的問題。 試圖清理和重建相同的問題。 試圖使兌現兌現相同的問題。添加支持設計時出現錯誤

這是我的代碼。

Main_Layout

Faild to instiantiate one or more classes 
The following classes could not be instantiated 
- android.support.v7.widget.AppCompatTextView (Open Class, Show Exception, 
    Clear Cache) 

搖籃模塊

apply plugin: 'com.android.application' 

    android { 
    compileSdkVersion 26 
    buildToolsVersion "26.0.1" 
    defaultConfig { 
    applicationId "com.example.mac.floating" 
    minSdkVersion 19 
    targetSdkVersion 26 
    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:26.+' 
compile 'com.android.support.constraint:constraint-layout:1.0.2' 
compile 'com.android.support:design:26.0.1' 
testCompile 'junit:junit:4.12' 
} 

並且仍然具有同樣的問題,任何幫助,將不勝感激。

回答

0

您的appcompact和設計庫版本需要相同。

只是改變這個

compile 'com.android.support:appcompat-v7:26.+' 
compile 'com.android.support.constraint:constraint-layout:1.0.2' 
compile 'com.android.support:design:26.+' 
+0

我tryed您的解決方案,但沒有太多的工作:現在 –

+0

@MohammadHassan什麼錯誤顯示 –

+0

嘗試改變版本.. –

0

您應該使用26.0.1

compile 'com.android.support:appcompat-v7:26.0.1' 
compile 'com.android.support:design:26.0.1' 

然後Clean-Rebuild-Run

+0

我tryed您的解決方案,但問題並沒有解決顯示 –

+0

@MohammadHassan什麼問題? –

+0

這是屏幕截圖的問題 –

0

你appcompact和設計庫版本必須是相同的:

compile 'com.android.support:appcompat-v7:26.+' 
compile 'com.android.support.constraint:constraint-layout:1.0.2' 
compile 'com.android.support:design:26.0.1' 
+0

https://ibb.co/g4rtK5 –

0

首先改變這種

`compile 'com.android.support:appcompat-v7:26.+' 

到:

compile 'com.android.support:appcompat-v7:26.0.1' 

之後無效緩存和重新啓動,然後清理項目並重建它。

希望這有助於。

+0

沒有工作對不起 –

0
compile 'com.android.support.constraint:constraint-layout:1.0.2' 
compile 'com.android.support:appcompat-v7:26.0.0-alpha1' 
compile 'com.android.support:design:26.0.0-alpha1' 
transitive = true 
+0

我tryed這個解決方案沒有奏效過srry –

+0

份額的異常細節 –

+0

這是我的個人信息異常的屏幕截圖 –

相關問題