我有相册,其中显示图像为圆形,带有白色边框。图像将动态添加。我尝试了框架布局,但它对我不起作用。我的尝试:在已经存在的圆形图像上添加动态图像..
<FrameLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView
android:id="@+id/image"
android:layout_width="60dip"
android:layout_height="60dip"
android:adjustViewBounds="true"
android:scaleType="centerCrop" />
<ImageView
android:id="@+id/imagef"
android:layout_width="100dp"
android:layout_height="100dp"
android:background="@drawable/ph_bg" />
</FrameLayout>
以上xml没有给出确切的结果..有什么想法吗?