- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我的按钮:
<com.rey.material.widget.Button
android:id="@+id/joinOccasionBTN"
style="@style/Material.Drawable.Ripple.Wave.Light"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:drawableStart="@drawable/ic_envelope"
android:drawablePadding="2dp"
android:gravity="center"
android:onClick="goToOccasion"
android:padding="20dp"
android:text="@string/join"
app:rd_enable="true"
app:rd_rippleType="wave" />
这是ic_envelope
:
<vector android:height="24dp" android:viewportHeight="58.0"
android:viewportWidth="58.0" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#E95853" android:pathData="M27.14,0.73L0,26v0.04h58v-0.04L30.86,0.73C29.81,-0.24 28.19,-0.24 27.14,0.73z"/>
<path android:fillColor="#C64645" android:pathData="M0,26.04h58v31.96h-58z"/>
<path android:fillColor="#D75A4A" android:pathData="M0.09,26.05l57.51,31.71c-0.03,0.13 -0.03,0.11 -0.06,0.24H0.13C0.06,58 0,57.94 0,57.87l0,-31.77C0,26.06 0.05,26.03 0.09,26.05z"/>
<path android:fillColor="#ED7161" android:pathData="M57.91,26.05L29,41.99l28.6,15.77c-0.03,0.13 -0.03,0.11 -0.06,0.24h0.33C57.94,58 58,57.94 58,57.87V26.1C58,26.06 57.95,26.03 57.91,26.05z"/>
最后是错误:
Binary XML file line #1: invalid drawable tag vector
设置布局时发生我该如何解决这个问题?
最佳答案
显然,drawableStart
不适用于 pre-lollipop 上的 Vectors;这使我的应用程序崩溃了。删除它是我的解决方案,也是唯一的解决方案,因为使用它们的唯一方法是使用 app:srcCompat
和 setImageResource()
,这不适用于 drawableX
。
关于Android 在 drawableStart 上无效的 drawable 标签向量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40071945/
我在下面的 Button 中有一个可绘制的 drawableStart 图标,但它无法正确缩放。我该怎么做才能纠正这个问题? P.S:我看到一些关于这个问题的帖子试图使用 ScaleDrawable
这是我的按钮: 这是ic_envelope: 最后是错误: Binary XML file line #1: invalid drawable tag vector 设置布局时发生我该如何
我创建了一个非常基本的布局: 根据 the documentation for drawableStart , "The drawable to be dra
我有我的 xml 布局: 我想写 Espresso 测试检查 EditText 有android:drawableStart="@drawable/ic_sign_in_password". 我该怎
Lars Vogel 的 SQLite 教程,自己的 ContentProvider 和 Loader 使用以下 ToDo 项目列表布局(检查 http://www.vogella.com/artic
起初我以为当我将系统语言更改为阿拉伯语时,drawableStart 会自动更改图标的位置,这是一种从右到左书写的语言。但是当我这样做时,什么也没有发生。所以我猜它们是一样的? 最佳答案 我不确定上面
所以我在这里查看了这份文件 https://developer.android.com/jetpack/compose/text#enter-modify-text 我设法使用以下方法创建了一个文本字
我是一名优秀的程序员,十分优秀!