How to customize text color of the CheckBoxPreference title

前端 未结 4 717
日久生厌
日久生厌 2020-12-14 04:58

How to change the color of Title text in CheckBoxPreference?

4条回答
  •  不知归路
    2020-12-14 05:36

    As zenob said this can be solved by a custom layout. Preference layout defined in the framework is used in the application:

    custom_preferece_layout.xml

    
    
    
    
    
    
        
    
            
    
            
    
        
    
        
        
    
    
    

    textColor attribute is defined for title TextView in the above layout. Use this layout with the checkbox preference in preference xml.

    mypreference.xml

    
    
        
    
    

    Checkbox preference title will have the color defined in the custom layout.

提交回复
热议问题