回收器视图在棉花糖中不可见,但在牛轧糖中可见

时间:2017-06-20 12:01:45

标签: android android-recyclerview android-6.0-marshmallow android-7.0-nougat

我在Android应用程序中创建了Recycler View。

它在Android牛轧糖设备中可见,但在棉花糖设备中不可见

的build.gradle

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.3"
    defaultConfig {
        applicationId "com.example.daniel.bhelstockmanager"
        minSdkVersion 21
        targetSdkVersion 25
        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:25.3.1'
    compile 'com.android.support:recyclerview-v7:25.3.1'

    testCompile 'junit:junit:4.12'
    compile('com.github.KingsMentor:MobileVisionBarcodeScanner:v1.2') { transitive = true; }
}

1 个答案:

答案 0 :(得分:0)

在Marshmallow 6.0及以下版本中存在同样的问题。

可以通过两种方式解决。

  1. 对于RecyclerView
  2. 将recyclerView Height设置为wrap_content,我的是match_parent。我想,因为我的Activity中只有RecyclerView,我可以将RecyclerView或ScrollView设置为match_parent,但不知怎的,它现​​在不能正常工作。我记得我多次使用带有match_parent属性的ScrollView。

    1. 对于ScrollView / NestedScrollView 将fillViewport属性设置为true。