Android GridView property set
Some special properties of the GridView:
1. android: numColumns = "auto_fit"// Set the number of columns in the GridView to automatic
2. android: columnWidth = "90dp"// The width of each column, that is, the width of the Item
3. android: stretchMode = "columnWidth"// Scaling and small column Synchronization
4. android: verticalSpacing = "10dp"// Margin between two rows
5. android: horizontalSpacing = "10dp"// Margin between two columns
6. android: cacheColorHint = "#00000000"// Remove the default black background when dragging
7. android: listSelector = "#00000000"// Remove the selected yellow background color
8. android: scrollbars = "none"// Hide the scroll bar of the GridView
9. android: fadeScrollbars = "true"// If it is set to true, the scroll bar can be automatically hidden and displayed.
10. android: fastScrollEnabled = "true"// The Quick scroll button appears in the GridView (at least four pages will be displayed)
11. android: fadingEdge = "none"// The Color of the fading edge of the GridView is null. The default value is vertical. (It can be understood as the color of the upper and lower edges)
12. android: fadingEdgeLength = "10dip"// Defines the length of the fading edge.
13. android: stackFromBottom = "true"// When it is set to true, the list you have prepared will display the bottom of your list
14. android: transcriptMode = "alwaysScroll"// When you add data dynamically, the list will automatically scroll down and the latest entries will be automatically rolled to the visible range.
15. android: drawselectid Top = "false"// Click a record, and the color will become the background color after the record. The text of the content is visible (false by default)