为了账号安全,请及时绑定邮箱和手机立即绑定

材料设计在 android studio 中不起作用

材料设计在 android studio 中不起作用

交互式爱情 2023-10-13 15:13:19
implementation 'com.google.android.material:material:1.0.0' 我在 Build.gradle 中添加了以下依赖项<com.google.android.material.button.MaterialButton         style="@style/Widget.MaterialComponents.Button.OutlinedButton"         android:layout_width="wrap_content"         android:layout_height="wrap_content"         android:layout_marginStart="36dp"         android:layout_marginTop="88dp"         android:background="@drawable/ic_launcher_background"         android:text="Click Me"         android:textColor="@color/colorAccent"         android:textSize="15sp"         app:backgroundTint="#00FFFFFF"         app:iconTint="@color/colorAccent"         app:layout_constraintStart_toStartOf="parent"         app:layout_constraintTop_toTopOf="parent"         app:strokeColor="@color/colorAccent"          />常规按钮已形成,但应该有一个轮廓按钮,因为我使用了这种样式: style=@style/Widget.MaterialComponents.Button.OutlinedButton所选的最低 Api 是否有任何问题或任何其他问题,请帮助我解决这个问题,谢谢
查看完整描述

1 回答

?
Smart猫小萌

TA贡献1911条经验 获得超7个赞

在基础应用程序主题中使用 Material 组件主题作为父主题。像下面这样

<!-- Base application theme. -->
<style name="AppTheme" parent="**Theme.MaterialComponents.Light.NoActionBar**">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
</style>


查看完整回答
反对 回复 2023-10-13
  • 1 回答
  • 0 关注
  • 83 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信