作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在开发一个带有 6 个按钮(Android 默认外观)的简单 Android 应用程序,我需要实现自定义按钮(我所说的自定义是指我添加了一个“pintrest”链接,它通过以下方式显示按钮类型外观和感觉)。
我的预期结果是可以显示角、一些效果、阴影的按钮,如下面的链接所示。
最佳答案
您可以覆盖 res/values/styles.xml 文件中的样式
或者
你可以创建自己的按钮,它看起来像这样:
class BorderedButton : Button {
constructor(context: Context) : super(context) {
init(context, null, null)
}
constructor(context: Context, attrs: AttributeSet) : super(context, attrs) {
init(context, attrs, null)
}
constructor(context: Context, attrs: AttributeSet, defStyleAttr: Int) : super(context, attrs, defStyleAttr) {
init(context, attrs, 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" />
关于android - 有没有办法在android studio中实现自定义按钮或小部件来替换android studio的默认按钮和小部件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54399633/
我是一名优秀的程序员,十分优秀!