在Android中删除AlertDialog标题的默认填充/边距,可以通过自定义AlertDialog的样式来实现。具体步骤如下:
<style name="CustomAlertDialog" parent="Theme.AppCompat.Light.Dialog.Alert">
<item name="android:windowTitleStyle">@style/CustomDialogTitle</item>
</style>
<style name="CustomDialogTitle">
<item name="android:padding">0dp</item>
<item name="android:background">@android:color/transparent</item>
</style>
AlertDialog.Builder builder = new AlertDialog.Builder(context, R.style.CustomAlertDialog);
builder.setTitle("标题")
.setMessage("消息内容")
.setPositiveButton("确定", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
// 确定按钮点击事件
}
})
.setNegativeButton("取消", new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
// 取消按钮点击事件
}
})
.show();
通过以上步骤,就可以在Android中删除AlertDialog标题的默认填充/边距。自定义的AlertDialog样式中,设置了标题的padding为0dp,并将背景设置为透明,从而达到去除默认填充/边距的效果。
推荐的腾讯云相关产品:腾讯云移动推送(https://cloud.tencent.com/product/umeng_push)可以用于在Android应用中实现消息推送功能。
领取专属 10元无门槛券
手把手带您无忧上云