我正在开发一个带有6个按钮的简单android应用(Android默认外观),我需要实现自定义按钮(我的意思是自定义,我要添加一个’pintrest’链接,以按外观显示按钮类型).
最佳答案
您可以在res / values / styles.xml文件中覆盖样式
原文链接:https://www.f2er.com/android/531317.html要么
您可以创建自己的按钮,如下所示:
class BorderedButton : Button {
constructor(context: Context) : super(context) {
init(context,null,null)
}
constructor(context: Context,attrs: AttributeSet) : super(context,attrs) {
init(context,attrs,attrs: AttributeSet,defStyleAttr: Int) : super(context,defStyleAttr) {
init(context,defStyleAttr)
}
override fun init(context: Context,attrs: AttributeSet?,defStyleAttr: Int?) {
this.setBackgroundResource(R.drawable.round_bordered_button_accent)
this.setTextColor(ContextCompat.getColor(context,R.color.colorAccent))
this.defaultFont()
}
}
然后像这样在您的xml中使用它:
<com.xxx.xxx.shared.custom_ui.buttons.BorderedButton
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/done" />