笔画没有应用于矩形到xml drawable用作android中的edittext背景

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了笔画没有应用于矩形到xml drawable用作android中的edittext背景相关的知识,希望对你有一定的参考价值。

我的应用程序中有一个圆角矩形可绘制,我用作edittext的背景。当我尝试向矩形添加笔划时,它没有被应用。这不是正确的方法吗?

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<stroke android:width="2dp" android:color="@color/d_d"/>
<solid android:color="#ffffff" />
<corners
    android:bottomLeftRadius="8dp"
    android:bottomRightRadius="8dp"
    android:topLeftRadius="8dp"
    android:topRightRadius="8dp" />
<padding android:bottom="10dp" android:top="10dp" android:left="10dp" android:right="10dp"/>

答案

我自己想通了。虽然我不知道原因,但是当我从editText中删除了android:backgroundTint="@color/white"属性时,在矩形上应用了笔划。

以上是关于笔画没有应用于矩形到xml drawable用作android中的edittext背景的主要内容,如果未能解决你的问题,请参考以下文章

如何将自定义按钮应用于 Android Studio 中的活动?

Android学习笔记圆角矩形ImageView自定义控件的实现与使用

Android入门——Drawable与对应的资源xml的应用

使用xml android在雅虎摘要新闻应用程序中绘制倾斜的矩形上边缘形状

Android Drawable - layer-list

Android Drawable - layer-list