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
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".
requestfeature()