Styling titleDivider in Dialog

后端 未结 15 1029
面向向阳花
面向向阳花 2020-12-06 05:27

I am wondering how it is possible to get rid of (or change color) titleDivider in Dialog. It is a blue line below dialog title shown on honeycomb+ devices.

15条回答
  •  无人及你
    2020-12-06 05:49

    In colors.xml:

    #00000000
    

    In dialog:

    int divierId = dialog.getContext().getResources().getIdentifier("android:id/titleDivider",null, null);

    View divider = d.findViewById(divierId); divider.setBackgroundColor(getResources().getColor(R.color.transparent));

提交回复
热议问题