Tag: xml drawable

如何使用可与图像一起绘制的形状?

我有这个困难,我的LinearLayout有圆angular和背景图像。 我知道我可以通过使用形状可绘制XML来实现圆angular,但是如果我将可绘制的形状作为我的LinearLayout的背景与android:background=@drawable/rounded_corner那么我不能指定任何图像作为背景。 我怎么能得到我的LinearLayout背景图像的圆angular? 任何帮助,将不胜感激。 谢谢!

与底部中风的Android形状

我需要创build一个android形状,以便只有底部有中风(虚线)。 当我尝试以下时,笔画将中心的形状一分为二。 有谁知道如何去正确的? 笔画需要是底线/边框。 我正在使用该形状作为TextView的背景。 请不要紧,为什么我需要它。 <?xml version="1.0" encoding="utf-8"?> <layer-list xmlns:android="http://schemas.android.com/apk/res/android" > <item> <shape android:shape="rectangle" > <solid android:color="#1bd4f6" /> </shape> </item> <item> <shape android:shape="line" > <padding android:bottom="1dp" /> <stroke android:dashGap="10px" android:dashWidth="10px" android:width="1dp" android:color="#ababb2" /> </shape> </item> </layer-list>