AlertDialog Default Button Divider Removal

こ雲淡風輕ζ 提交于 2019-12-12 05:24:43

问题


The problem is that whenever a single item array is passed into the DialogFragment, there is an extra line (a divider perhaps) that is drawn above the cancel button.

Single Item AlertDialog

When there are multiple items in the array, the dialog appears correctly.

Multi-item AlertDialog

How can I get rid of the extra line in the single item alert dialog?

I'm using a DialogFragment to create an AlertDialog with an array resource

    @Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
    int itemsId = 0;

    Bundle args = getArguments();
    if (args != null) {
        itemsId = args.getInt(BUNDLE_ITEMS_ARRAY_ID_KEY, itemsId);
    }

    if (itemsId > 0) {
        AlertDialog.Builder builder = new AlertDialog.Builder(getActivity())
                .setItems(itemsId, this).setCancelable(true)
                .setNegativeButton(android.R.string.cancel, null);
        return builder.create();
    } 
    return null;
}

I'm also customizing the alert dialog style

<style name="AppTheme" parent="@android:style/Theme.Holo.Light.DarkActionBar">
    <item name="android:dialogTheme">@style/MyAlertDialog</item>
    <item name="android:alertDialogTheme">@style/MyAlertDialog</item>
</style>
<style name="MyAlertDialog" parent="@android:style/Theme.Holo.Dialog">
   <item name="android:windowBackground">@android:color/transparent</item>
</style>

回答1:


The solution was to check for the single list item condition and then set the ListView divider's height to 0.

AlertDialog alertDialog = builder.create();
if (getActivity().getResources().getStringArray(itemsId).length == 1)
    alertDialog.getListView().setDividerHeight(0);
return alertDialog;


来源:https://stackoverflow.com/questions/22826016/alertdialog-default-button-divider-removal

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!