去除某些Android手機(jī)系統(tǒng)上dialog頂部出現(xiàn)的分割線
Context context = dialog.getContext();
int divierId = context.getResources().getIdentifier("android:id/titleDivider", null, null);
View divider = dialog.findViewById(divierId);
if (divider != null) {
divider.setBackgroundColor(Color.TRANSPARENT);
}