How do I clear the separation lines for each row in ListView? What should I do if I can erase it from the xml?
android-listview android
In xml, give the dividerHeight property to zero.
android:dividerHeight="0dp"
android:divider="@null"
Do it like this or on the code
getListView().setDividerHeight(0);
getListView().setDivider(null);
You can do it like this.
612 GDB gets version error when attempting to debug with the Presense SDK (IDE)
915 When building Fast API+Uvicorn environment with PyInstaller, console=False results in an error
578 Understanding How to Configure Google API Key
572 rails db:create error: Could not find mysql2-0.5.4 in any of the sources
© 2024 OneMinuteCode. All rights reserved.