2011-09-27 38 views

回答

2

此代碼可能對您有所幫助。

<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> 
+0

這可能工作在左側......但什麼右側?特別是如果矩形圖像位於屏幕的左側,並且圓形圖像需要位於圖像的右下側? – Ahsan

+0

我們只能使用相對佈局..需要設置'alignParentRight'和'alignParentBottom'爲true。但是,仍然不完全是我想要的! – Ahsan

相關問題