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

当筵意气临九霄,星离雨散不终朝。这篇文章主要讲述笔画没有应用于矩形到xml drawable用作android中的edittext背景相关的知识,希望能为你提供帮助。
【笔画没有应用于矩形到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"属性时,在矩形上应用了笔划。

    推荐阅读