Last active
August 29, 2015 14:20
-
-
Save fatorx/f95101f96a3b342fd5fd to your computer and use it in GitHub Desktop.
RecyclerView não chamando o método onCreateViewHolder do Adapter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Se um recyclerView não estiver sendo chamado | |
// (métodos do Adapter onCreateViewHolder e onBindViewHolder), | |
// mesmo passando uma lista de itens maior que zero, deve ser definida uma altura | |
// minima para a tag RecyclerView : | |
<android.support.v7.widget.RecyclerView | |
android:id="@+id/rvCardsList" | |
android:layout_width="match_parent" | |
android:layout_height="40dp" | |
android:scrollbars="vertical" /> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment