我在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; }
}
答案 0 :(得分:0)
在Marshmallow 6.0及以下版本中存在同样的问题。
可以通过两种方式解决。
将recyclerView Height设置为wrap_content,我的是match_parent。我想,因为我的Activity中只有RecyclerView,我可以将RecyclerView或ScrollView设置为match_parent,但不知怎的,它现在不能正常工作。我记得我多次使用带有match_parent属性的ScrollView。