I am using custom dialog and I want to remove this blue line. How can I do this?
I tried alert.requestWindowFeature(Window.FEATURE_NO_TITLE);
and some other method but no effects
below code is not working!
int divierId = alert.getContext().getResources()
.getIdentifier("android:id/titleDivider", null, null);
View divider = alert.findViewById(divierId);
divider.setBackgroundColor(getResources().getColor(R.color.creamcolor));