我有兩個圖像 - 1)的矩形之一,顯示的實際內容和2)具有圓形透明角ImageView的經由另一圖片圓角作爲背景
白色圖像是否有可能將圖像1內圖像2,保持其大小,但使其形狀與2相同?
基本上我想圖像2是我已經試過層和插圖可繪但所有的時間圖像1重疊圖像2.
預先感謝圖像1.
的容器!
更新1:
這裏是我的ImageView XML部分:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="72dp"
android:orientation="horizontal">
<ImageView
android:id="@+id/avatar"
android:src="@drawable/mainImg"
android:background="@drawable/backgroundImg"
android:layout_width="56dp"
android:layout_height="56dp"
android:layout_gravity="center"
android:contentDescription="@string/desc" />
</LinearLayout>
更新2:
下面是鏈接到三個圖像 1)背景 2)主圖片 3)預期結果(圓角)
你應該發佈你的XML佈局。 –
爲什麼不使用RelativeLayout來實現那個..然後你可以把包含圖像的imageview首先放在它的頂部,你會把幀圖像.. – Cata