我有5个按钮,它们都有不同的颜色,颜色以此按钮的样式显示。但我需要更改按钮角落的圆角,但按钮的颜色保持不变。当我创建一个新的drawable并将其分配给按钮时,我所有的byttons都有一个白色。
可绘制颜色覆盖colorButtonNormal,我也不想创建五个可绘制文件。
<!---PRIMARY BUTTON-->
<style
name="PrimaryButton" parent="Widget.AppCompat.Button">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:fontWeight">600</item>
<item name="android:textAllCaps">false</item>
<item name="android:background">@drawable/primary_button</item>
</style>
<style name="BlackButton" parent="PrimaryButton">
<item name="android:textColor">#ffffff</item>
<item name="colorButtonNormal">@color/black</item>
</style>
<style name="GrayButton" parent="PrimaryButton">
<item name="android:textColor">#ffffff</item>
<item name="colorButtonNormal">@color/gray</item>
</style>
//...
primary_button.xml:
<?xml version="1.0" encoding="utf-8"?>
<selector
xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape>
<corners android:radius="5dip"/>
</shape>
</item>
</selector>
我发现了同样的主题 Can I override some attribute of drawable shape? 但我可以从其他资源等定义角半径吗?
答案 0 :(得分:0)
我找到了相同的主题我可以覆盖一些可绘制形状的属性吗?但我可以从其他资源等定义角半径吗?
答案是否定的。没有其他方法可以定义来自其他资源等的角半径,除非您想要创建一个完全像按钮一样的自定义Using originalImage = Image.FromFile(filePath)
Dim newImage As New Bitmap(originalImage.Width, originalImage.Height)
Using g = Graphics.FromImage(newImage)
g.DrawImage(originalImage, Point.Empty)
End Using
'Dispose the existing image if there is one.
PictureBox1.Image?.Dispose()
PictureBox1.Image = newImage
End Using
并使用圆角绘制。
覆盖自定义形状颜色的最简单方法是使用代码更改它,就像您找到的一样。