I have a preference
in which I am setting my title and summary programmatically
PreferenceScreen screen= parent.getPreferenceManager().createPreferenceScreen(context);
screen.setTitle(R.string.color_title);
screen.setSummary(R.string.color_summary);
Now I want to apply an icon to my preference.
screen.setIcon(shape);
But this icon is aligned to left of my title and summary Is there any way to right align this icon in my preference?