Stackfrombottom Property
Whether the ListView is displayed from the bottom and does not reverse the data, with a value of true and False
Android:stackfrombottom= "true"
Transciptmode Property
You need to track or view information in real time with a ListView or other control that displays a large number of items, and you want the latest entries to automatically scroll to the viewable range. By setting the Control Transcriptmode property, you can automatically slide the controls on the Android platform (support ScrollBar) to the bottom.
Android:transcriptmode= "Alwaysscroll"
Cachecolorhint Property,
Many people want to be able to change its background so that he can conform to the overall UI design, changing the background is very simple just need to prepare a picture and then specify the property android:background= "@drawable/bg", but do not be happy too early, when you do so, Found that the background is changed, but when you drag, or click on the list blank position to find that the ListItem have become black, destroying the overall effect.
If you just change the color of the background, you can directly specify Android:cachecolorhint as the color you want, if you are using a picture to do the background, it will be as long as the android:cachecolorhint is specified as transparent (#00000000) can be
Divider Property
The function of this property is to set a picture as an interval between each item, or to remove the split line between items
android:divider= "@drawable/list_driver" where @drawable/list_driver is a picture resource, if you do not want to display the split line as long as it is set to android:divider= "@ drawable/@null "It's OK.
Fadingedge Property
There's a black shadow on the top and bottom.
Android:fadingedge= "None" after setting no Shadow ~
ScrollBars Property
The function is to hide the scroll bar of the ListView,
Android:scrollbars= "None" with setverticalscrollbarenabled (true); the effect is the same, not active when hidden, when the activity is also hidden
Fadescrollbars Property
Android:fadescrollbars= "true" when configuring the ListView layout, setting this property to True enables the auto-hide and display of scroll bars.
The ListView of Android UI