I just want Transparent Pressed Color in CustomListView so set it on a Designer, but when app run & CustomListView pressed, the pressed color became white not transparent.
What do you want to see setting the pressed color to transparent? What is under the xCLV? If so, you should set to transparent the ScrollView wich is the main component of a xCLV and its internal panel.
B4X:
clv.AsView.Color = Colors.Transparent
Dim sv As ScrollView
sv = clv.AsView.GetView(0)
sv.Panel.Color = Colors.Transparent
What do you want to see setting the pressed color to transparent? What is under the xCLV? If so, you should set to transparent the ScrollView wich is the main component of a xCLV and its internal panel.
B4X:
clv.AsView.Color = Colors.Transparent
Dim sv As ScrollView
sv = clv.AsView.GetView(0)
sv.Panel.Color = Colors.Transparent
I just want to display a lots of string.
If use EditText, whenever user click on the view, Virtual Keyboard shows, which I don't want to. If set EditText to Disable, it can scroll, so I use xCustomList view instead.