Adding a header to a PreferenceActivity

后端 未结 2 1393
[愿得一人]
[愿得一人] 2021-01-11 16:19

So I have found that android PreferenceScreen is not very style-friendly. Is there a semi-simple way to just add a header (say an image) to the preferencescreen before the

2条回答
  •  北恋
    北恋 (楼主)
    2021-01-11 17:16

    There is a limitation with Mircea approach: you can't remove the title at the top:

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
    
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        ...
    

    This results in "requestfeature() must be called before adding content".

提交回复
热议问题