我正在使用自定義對話框,我想刪除這條藍線。我怎樣才能做到這一點?安卓提醒對話框 - 無法刪除默認藍線
我試圖alert.requestWindowFeature(Window.FEATURE_NO_TITLE);
和其他一些方法,但沒有影響
下面的代碼無法正常工作!
int divierId = alert.getContext().getResources()
.getIdentifier("android:id/titleDivider", null, null);
View divider = alert.findViewById(divierId);
divider.setBackgroundColor(getResources().getColor(R.color.creamcolor));
的可能的複製[?如何隱藏藍線標題divder alertdialog(http://stackoverflow.com/questions/20853970/ how-to-hide-the-blue-line-title-divider-alertdialog) – Strider