Button 的边缘周围仍然有一条浅灰色线,而它的边缘具有相同的背景颜色

the edge of a Button still has a light grey line around it while the edge of it has the same color of background

我也为颜色为红色且边缘颜色为红色的按钮设置了渐变,
按钮也放置在红色的线性布局中

问题出在按钮的边缘周围仍然有一条浅灰色的线
为什么?
由于边缘是红色,所以应该看不到边缘

如图所示,当边缘为绿色时,仍然可以看到灰色的东西

您可以尝试将此代码添加到您按钮的 xml

style="?android:attr/borderlessButtonStyle"

这是material设计指南中按钮的默认阴影。要删除它,请将此属性放入您的 <Button 元素中:

    android:stateListAnimator="@null"

或者,您可以通过编程方式执行此操作:

if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.LOLLIPOP) { //Check if it's supported
    yourButton.setStateListAnimator(null);
}