- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
A Button which supports compatible features on older versions of the platform, including:
Allows dynamic tint of its background via the background tint methods in ViewCompat. Allows setting of the background tint using R.attr.backgroundTint and R.attr.backgroundTintMode. This will automatically be used when you use Button in your layouts and the top-level activity / dialog is provided by appcompat. You should only need to manually use this class when writing custom views.
现在,这让我假设以下两个按钮在高级设备上看起来完全一样。
<androidx.appcompat.widget.AppCompatButton
android:text="AppCompatButton"
android:id="@+id/appcompatbutton"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:layout_below="@id/appcompatbutton"
android:id="@+id/button"
android:layout_width="wrap_content"
android:text="Button"
android:layout_height="wrap_content" />
然而,这是它的实际样子:
我在以下模拟器上运行了这个:Galaxy Nexus,API:28 (720 x 1280 xhdpi)
当我像这样在我的 appTheme 中应用 buttonStyle 时:
<!-- 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>
<item name="buttonStyle">@style/Widget.MaterialComponents.Button</item>
</style>
它改变了 AppCompatButton 而不是像这样的普通按钮:(注意圆边的细微差别)
我还尝试创建一个自定义按钮,它既继承自 android.widget.Button 又继承自 androidx.appcompat.widget.AppCompatButton,这两个按钮显示的行为与在 xml 中使用 AppCompatButton 的行为相同。所以感觉唯一的异常(exception)是 XML 中的 Button。
问题一:
在我看来,这一切似乎令人难以置信。有人可以将此解释为错误或功能吗?
编辑 1
调试时发现 Button 实际上变成了 MaterialButton,见下图:
问题二:
为什么会发生这种转变?
编辑 2
问题2答案:
Button 到 MaterialButton 的转换是由于我使用的父主题。
问题三:
如何实现一个自定义按钮,使其像 xml 中的 Button 一样工作?
作为旁注和个人意见,也有轻微的重复,这个系统不仅令人困惑,而且很难做到正确和万无一失以备将来更改。除此之外,文档非常差。如果也包括对此的回答,或者至少对此进行讨论,例如如何处理它,我将不胜感激。
最佳答案
简短的回答。
This all seems incredibly confusing according to me. Can someone clarify this as either a bug or feature?
他们使用不同的风格。
Why is this transformation happening?
有一个自动膨胀启用,将取代 <Button
与 <com.google.android.material.button.MaterialButton
在运行时。
How do you implement a custom button which works just like Button in xml would?
可以自定义xml中的属性或者主题属性。
长答案。
MaterialButton
的默认样式是Widget.MaterialComponents.Button
.此样式继承自 Widget.AppCompat.Button
但改变了一些属性。 Here您可以找到不同之处。
主要区别 is here :
<item name="shapeAppearance">?attr/shapeAppearanceSmallComponent</item>
您可以在 official doc 中阅读有关塑形的更多信息.如果浏览样式,您会发现:
<style name="ShapeAppearance.MaterialComponents.SmallComponent">
<item name="cornerSize">@dimen/mtrl_shape_corner_size_small_component</item>
</style>
哪里mtrl_shape_corner_size_small_component
= 4dp
.它解释了圆形边缘的细微差别。
你也在用 <item name="buttonStyle">@style/Widget.MaterialComponents.Button</item>
.
它不适用于 MaterialButton。你必须使用:
<item name="materialButtonStyle">@style/Widget.MaterialComponents.Button</item>
MaterialComponentsViewInflater
如果正在使用 Material Components 主题,则在通货膨胀时用 Material Components 替换一些框架小部件。
AppCompat 也会发生类似的情况(您可以查看 MaterialComponentsViewInflater extends AppCompatViewInflater
)。
这意味着,<Button
被替换 <com.google.android.material.button.MaterialButton
在运行时,如果您使用的是 Material 主题。
<style name="AppTheme" parent="Theme.MaterialComponents.Light">
...
<item name="materialButtonStyle">@style/MyButtonStyle</item>
</style>
<style name="MyButtonStyle" parent="Widget.MaterialComponents.Button">
<item name="cornerRadius">xxx</item>
</style>
或
<style name="MyButtonStyle" parent="Widget.MaterialComponents.Button">
<item name="shapeAppearanceOverlay">@style/SShapeAppearanceOverlay.MyApp.Button.Rounded</item>
</style>
<style name="ShapeAppearanceOverlay.MyApp.Button.Rounded" parent="">
<item name="cornerFamily">rounded</item>
<item name="cornerSize">xxdp</item>
</style>
关于即使在高 API 级别的设备上,Androidx AppCompatButton 看起来也不同于 Button,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56702904/
我回到我的 Android 项目来完成它的工作,突然我收到此错误消息 “无法解析 androidxAffected 模块:app” “错误:无法解析:androidx。受影响的模块:应用程序” 这是我
我今天尝试使用 Android Studio 中的“重构 -> 迁移到 AndroidX”选项将我当前的项目迁移到 AndroidX,每当我尝试编译我的应用程序时,我都会收到一个 Program ty
当我尝试构建应用程序时,它在构建选项卡上给了我这个错误 More than one file was found with OS independent path 'META-INF/androidx
我在尝试构建 Android 应用程序时遇到以下问题。我遇到了一些关于强制或使用手动依赖项解决策略的 android 帖子。这似乎并没有解决问题。 有人问过类似的问题:Similar stack ov
我刚刚通过 Android Studio 菜单选项 Refactor -> Refactor to AndroidX 迁移到 androidx 我收到以下错误: android.view.Inflat
我用 kotlin 开始新的 android 应用程序项目。我的 sdk gradle 配置是 compileSdkVersion 29 和 buildToolsVersion "29.0.1" 我试
我迁移到 AndroidX,然后如果我尝试使用 API 29 将项目运行到模拟器中,我会收到错误。 API 28 及之前的模拟器/真实设备没有问题。 java.lang.RuntimeExceptio
我正在开发 Android MVVM 应用程序。我只是手动切换到 androidx 库。这是我的 build.gradle 中的库: implementation 'com.google.code.g
在迁移到 AndroidX 并将所有 AndriodX 包更新到最新版本后,构建将失败,在 obj 中的构建生成的 XML 文件中显示三个类似的错误文件夹: \obj\Debug\100\lp\117
从 更新导航组合依赖后2.4.0-alpha03 至 2.4.0-alpha05 在尝试在可组合屏幕之间导航(例如从 taskComposable 导航到 listComposable 屏幕)后,我遇
我刚刚通过 Android Studio 菜单选项 重构 -> 重构到 AndroidX 迁移到 androidx 我收到以下错误: android.view.InflateException: Bi
我创建了一个 Android 应用程序,并从 Gallery 添加了“Navigation Drawer Activity”,我删除并重命名了菜单项。当我单击抽屉 Activity 中的任何菜单项启动
我正在制作一个项目,但是当我编译我的项目并在 Android Studio 上启动应用程序时,我的应用程序崩溃了。 在我的 Logcat 错误中 Process: com.passionategeek
完整的堆栈仅包括 android 核心代码: java.lang.NullPointerException: Attempt to invoke virtual method 'boolean and
将项目迁移到 AndroidX 后出现以下错误:程序类型已经存在androidx.concurrent.futures.DirectExecutor 我的应用Gradle如下: configu
我想在 Play 商店中更新应用程序的版本,但在测试中我开始收到此错误。 Superclass androidx.core.app.f of androidx.activity.ComponentAc
AndoirdX 升级后出现错误。 android.databinding.tool.util.LoggedErrorException: failure, see logs for details.
将项目迁移到 AndroidX 后我遇到了这个崩溃 Unable to start activity ComponentInfo{oackagename/com.paymob.acceptsdk.P
我的导航 Controller 中有此错误,我已经更改了 XML 中的声明,但没有帮助,我更改了 Fragment 为 FragmenContainer,但没有帮助。谁能帮我解决这个错误? 日志: E
我创建了一个水平回收器 View ,其中加载了项目。之后,我需要选择该项目并执行点击事件。到这个存档(代码在下面可用),现在我想改变点击项目的颜色,剩下的项目应该被取消选择。如果我没有正确查询,请道歉
我是一名优秀的程序员,十分优秀!