recyclerview and cardview appear only on nexus 5 23 API emulator
I am new to Android and Java. I have a navigation drawer with a list in it, and I have a RecyclerView with CardViews in it. It all shows up on the Nexus 5 with API 23, but when I try other emulators nothing appears: neither the list in the drawer, nor the cards.
In my Gradle file I have these dependencies:
compile 'com.android.support:appcompat-v7:23.2.1'
compile 'com.android.support:design:23.2.1'
compile 'com.android.support:cardview-v7:23.2.0'
compile 'com.android.support:recyclerview-v7:23.2.0'
I do not get any errors, but my views still do not show up.
i have tried in different devices with API 21 and 19, and even with others with API 23 and the same result. it only appears on the Nexus 5 API 23.
i have tried to change the gradle to API 19, 21, 22, and nothing.
anyone?
i have tried to change the gradle to API 19, 21, 22, and nothing.
anyone?