Styling titleDivider in Dialog

后端 未结 15 996
面向向阳花
面向向阳花 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:27

    This one is tested on some 4.x devices:

        TextView title = (TextView)getWindow().getDecorView().findViewById(android.R.id.title);
        ((ViewGroup)title.getParent()).getChildAt(1).setVisibility(View.GONE);
    

提交回复
热议问题