RelativeLayout 錨點

      在〈RelativeLayout 錨點〉中尚無留言

ToDo

設定RelativeLayout時, 無法隨意在整個螢幕設定Location, 因為此Layout是由上到下, 由左到右將畫面足一擴展. 若先前元件只擴展到一半高度, 那剩下後半段, Invisible元件是無法顯示的

為了克服此問題, 需在對角中安排二個元件, 如下程式碼

<ImageView
    android:layout_alignParentRight="true"
    android:layout_width="1px"
    android:layout_height="1px">
</ImageView>
<ImageView
    android:layout_alignParentBottom="true"
    android:layout_width="1px"
    android:layout_height="1px">
</ImageView>

			

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *