我有这个可绘制的xml
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:bottomRightRadius="5dp"
android:bottomLeftRadius="5dp" android:topLeftRadius="5dp"
android:topRightRadius="5dp" />
<solid android:color="#000000" />
<stroke android:width="1dip" android:color="#ffffff"/>
<gradient android:startColor="#00000000" android:endColor="#00000000"
android:angle="270" />
</shape>
我把这个drawable放在LinearLayout
上 <LinearLayout android:id="@+id/llTime"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:background="@drawable/back_rounded"
android:paddingLeft="5dp"
android:paddingRight="2dp">
一切正常。除了一些LG设备运行他们的股票ROM。形状应该是透明的,但在LG上,形状充满了白色块颜色。
有什么问题?什么是替代解决方案?
由于