Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 Android 的自定义 DialogPreference 中隐藏取消按钮?
覆盖 onPrepareDialogBuilder 并将其设置为 null 那里。
/** Hide the cancel button */ @Override protected void onPrepareDialogBuilder(Builder builder) { super.onPrepareDialogBuilder(builder); builder.setNegativeButton(null, null); }