我有兩個圖像。圖像A是矩形的,圖像B是圓形的。我希望圖像B位於圖像A的右下角A - 1/4位於圖像A內,而其他圖像位於圖像A外部的3/4。如何在android的相對佈局中的另一個角落放置一個圖像?
我不知道如何使用我的android應用程序的相對佈局來做到這一點。任何幫助?
謝謝。
我有兩個圖像。圖像A是矩形的,圖像B是圓形的。我希望圖像B位於圖像A的右下角A - 1/4位於圖像A內,而其他圖像位於圖像A外部的3/4。如何在android的相對佈局中的另一個角落放置一個圖像?
我不知道如何使用我的android應用程序的相對佈局來做到這一點。任何幫助?
謝謝。
此代碼可能對您有所幫助。
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<ImageView
android:id="@+id/imagepart"
android:layout_width="72dp"
android:layout_height="72dp"
android:scaleType="centerCrop"
android:adjustViewBounds="true"
/>
<ImageView android:id="@+id/imgOnlinePart" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_alignParentLeft="true"
android:layout_alignBottom="@+id/imagepart" android:src="@drawable/online"/>
</RelativeLayout>
使用的FrameLayout而不是 – ingsaurabh