alert Dialog设置 button颜色 圆角

简介: alert Dialog设置 button颜色 圆角
button.setBackground(ContextCompat.getDrawable(LauncherNoticeActivity.this,R.color.button_background));
<resources>
    <style name="AlertDialogCustom" parent="Theme.AppCompat.DayNight.Dialog.Alert">
        <item name="android:background">@color/view_background</item>  dialog的背景
        <item name="android:dialogCornerRadius">10dp</item>            对话框的四个圆角半径
        <item name="android:buttonCornerRadius">10dp</item>            button的四个圆角半径
    </style>
</resources>
button.setBackgroundResource(R.drawable.button_background);
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
    <corners android:radius="10dp"/>
    <size android:width="100dp" android:height="10dp"/>
    <solid android:color="@color/button_background"/>
</shape>


目录
相关文章
|
6月前
element-plus:el-Dialog对话框组件垂直居中、禁止屏幕滚动、使用内滚动
element-plus:el-Dialog对话框组件垂直居中、禁止屏幕滚动、使用内滚动
|
6月前
element-ui 表格和 tooltip修改背景颜色和箭头颜色
element-ui 表格和 tooltip修改背景颜色和箭头颜色
727 0
|
11月前
|
前端开发
CSS:去除input和button边框以及选中时边框默认样式
CSS:去除input和button边框以及选中时边框默认样式
element-ui框架的el-dialog弹出框被遮罩层挡住了/el-drawer....会生成v-model元素的组件被遮罩层挡住
element-ui框架的el-dialog弹出框被遮罩层挡住了/el-drawer....会生成v-model元素的组件被遮罩层挡住
403 1
element-ui框架的el-dialog弹出框被遮罩层遮挡问题
element-ui框架的el-dialog弹出框被遮罩层遮挡问题
533 0
|
Android开发
Button(按钮)与ImageButton(图像按钮)
今天给大家介绍的Android基本控件中的两个按钮控件,Button普通按钮和ImageButton图像按钮; 其实ImageButton和Button的用法基本类似,至于与图片相关的则和后面ImageView相同,所以本节只对Button进行讲解,另外Button是TextView的子类,所以TextView上很多属性也可以应用到Button 上!
125 0
element-ui框架的el-dialog弹出框被遮罩层挡住了
element-ui框架的el-dialog弹出框被遮罩层挡住了
335 0
element-ui框架的el-dialog弹出框被遮罩层挡住了
|
前端开发
前端取消input获取焦点时的边框
前端取消input获取焦点时的边框
132 0
element-ui:el-dialog遮罩层变黑
element-ui:el-dialog遮罩层变黑
539 0