我希望图像有圆角.我实现了这个xml代码并在我的图像视图中使用它.但图像与形状重叠.我正在通过异步任务下载图像.
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<corners android:radius="20dip" />
</shape>
<ImageView
android:id="@+id/trVouchersImage"
android:layout_width="55dp"
android:layout_height="55dp"
android:layout_marginLeft="8dp"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true"
android:layout_alignParentLeft="true"
android:background="@drawable/ash_arrow"
/>
Run Code Online (Sandbox Code Playgroud) 我正在为Android 4.4 KitKat创建一个模拟器,但模拟器需要很长时间才能启动.我尝试了许多设备,如Nexus4,Galaxy Nexus,Nexus S等,但都没有.只是一个带有android徽标的黑屏很长一段时间.有什么建议?