Android Studio - 使用支持库渲染XML文件的问题

时间:2015-05-22 15:52:54

标签: android android-layout android-support-library

我得到了使用支持库的XML文件的渲染问题,而我对普通的XML文件却没有相同的问题。这些是我为单独的XML文件获得的错误

错误

*The following classes cannot be found:
android.support.v7.widget.RecyclerView
android.support.v4.widget.DrawerLayout
android.support.v7.widget.Toolbar*

a)Android Studio版本:1.2.1.1

b)Build.gradle

apply plugin: 'com.android.application'

android {
compileSdkVersion 22
buildToolsVersion '22.0.1'

defaultConfig {
    applicationId "com.piserve.geejo.mskv4"
    minSdkVersion 15
    targetSdkVersion 22
    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 'org.lucasr.dspec:dspec:0.1.1'
   compile 'com.mcxiaoke.volley:library:1.0.+'
   compile 'com.android.support:appcompat-v7:22.1.1'
   compile 'com.android.support:recyclerview-v7:22.1.1'
}

c)布局XML文件(其中之一)

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar 
   xmlns:android="http://schemas.android.com/apk/res/android"
   xmlns:app="http://schemas.android.com/apk/res-auto"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:background="@color/color_primary"
   app:popupTheme="@style/ThemeOverlay.AppCompat.Dark"
   app:theme="@style/MyCustomToolbarTheme"
>

d)SDK Manager屏幕截图

1

这是我尝试的内容:

a)将编辑器窗口中的主题更改为素材和全息主题

b)在Android v21和v22之间切换

c)尝试使用Nexus 4-10中的不同模拟器

1 个答案:

答案 0 :(得分:1)

我遇到了完全相同的问题。这些解决方案都不适合我,所以我不得不恢复到Android Studio 1.1.0:http://tools.android.com/download/studio/canary/1-1-0