Recyclerview预览显示灰屏,中间带有android.support.v7.widget.RecyclerView

时间:2018-08-07 09:59:27

标签: android android-studio android-recyclerview android-coordinatorlayout

我正在尝试将Recyclerview添加到我的活动布局,但是布局预览向我显示this。我仔细研究了所有可能的答案,并尝试做

  1. 将应用程序主题更改为holo.light
  2. <style name="AppTheme" parent="Base.Theme.AppCompat.Light.DarkActionBar">添加到res>styles.xml
  3. 经历了所有可能的相关问题,例如thisthis as well,并在我的代码中进行了相应的更改。

我的build.gradle文件如下:

apply plugin: 'com.android.application'

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

dependencies {
    implementation fileTree(include: ['*.jar'], dir: 'libs')
    implementation 'com.android.support:appcompat-v7:28.0.0-alpha3'
    implementation 'com.android.support.constraint:constraint-layout:1.1.2'
    implementation 'com.android.support:support-v4:28.0.0-alpha3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
    implementation 'com.android.support:design:28.0.0-alpha3'
    implementation 'com.android.support:cardview-v7:28.0.0-alpha3'
    implementation 'com.android.volley:volley:1.0.0'
    implementation 'com.android.support:recyclerview-v7:28.0.0-alpha3'

}

当我尝试在活动中使用坐标布局时,也会发生相同的问题。我正在使用android studio 3.1.3和我的设备,目标是oreo版本。

我无法找出问题所在。请帮我。

4 个答案:

答案 0 :(得分:0)

尝试在Android Studio的“文件”中执行“ 使缓存无效/重新启动”。

如果这不起作用,请尝试以下操作:

将此添加到您的 build.gradle (项目)文件中:

configurations.all {
    resolutionStrategy {
        force 'com.android.support:recyclerview-v7:28.0.0-alpha3'
    }
}

答案 1 :(得分:0)

尝试一下 com.android.support:recyclerview-v7:20.0.+
或删除Alpha并尝试

答案 2 :(得分:0)

我认为您应该尝试更改sdk版本,并使用较旧的recyclerview版本(可能是27版)以及您以前用来查看其功能的其他库。

答案 3 :(得分:0)

尝试一下:

compileSdkVersion 27
buildToolsVersion '27.0.1'
targetSdkVersion 27

希望这会有所帮助。