Created
November 24, 2015 23:31
-
-
Save Artur-Sulej/bae5579d0f845fb1b490 to your computer and use it in GitHub Desktop.
Attributes of a listView making its dividers disappear.
This file contains 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
<ListView | |
android:id="@+id/list_view" | |
android:layout_width="match_parent" | |
android:layout_height="match_parent" | |
android:animationCache="false" | |
android:cacheColorHint="@color/transparent" | |
android:divider="@color/transparent" | |
android:dividerHeight="0dp" | |
android:listSelector="@color/transparent" | |
android:scrollingCache="false"/> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment