我遇到了模拟器中圆角背景形状的问题,我真的无法弄清楚。圆角不工作(在Android模拟器中)
形状代码如下:
android:width="1dip"
android:color="#ccffffff" />
android:color="#cc111111" />
android:left="3dip" android:top="3dip"
android:right="3dip" android:bottom="3dip" />
在以下相对布局使用:
android:id="@+id/loginboxlayout"
android:layout_width="190dp"
android:layout_height="240dp"
android:layout_centerInParent="true"
android:background="@drawable/rounded"
android:padding="0dp" >
(...)
在图形布局,在蚀,它显示正确的,但在模拟器上它不't:screenshots。
我正在使用android 4.0。
在此先感谢。
2012-03-22
takecare