1、MaterialButton
MaterialButton是Google于SDK28推出的新控件,当遇到按钮需要圆角、或者描边等,就不必使用xml文件或者Github上找第三方库实现。
1.1 依赖引入
添加依赖 我的项目默认添加了material 1.4.0
Project文件模式下 app—> bulid.gradle
implementation 'com.google.android.material:material:1.3.0'
app 的theme主题修改
app—>src---->main---->AndroidManifest.xml
android:theme="@style/Theme.项目名"
<--!点击进入这个theme文件-->