Xamarin.Forms untappable ListView (remove selection ripple effect)

后端 未结 2 1774
我寻月下人不归
我寻月下人不归 2020-12-14 16:37

I have a ListView with a custom ViewCell that displays articles. However when you select a item, it shows the material design ripple/selection effect.

2条回答
  •  有刺的猬
    2020-12-14 17:20

    I think you can remove it without a custom renderer.

    You can set the BackgroundColor of your StackPanel to grey or whatever your list's or page's background color is.

    
        
            
                
                    
                         
                    
                
            
        
    
    

    Or you can use android styles to change the list view styles:

    Set theme in AndroidManifest.xml

    
    

    Create theme in styles.xml

    
    
        
    
        
    
    

提交回复
热议问题