針對RelativeLayout佈局,有一點問題,須要明確,由於它內部是多個view間的關係肯定的框架,那麼當其中的一個view因其它view隱藏後,會影響其相關的views,因此安卓提供一屬性解決此問題alignWithParentIfMissing用於解決相似問題android
當某一個View沒法找到與其相關的views時,就找到alignWithParentIfMissing的設定判斷是否與父級view對齊app
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 框架
android:layout_width="fill_parent" 佈局
android:layout_height="?android:attr/listPreferredItemHeight" spa
android:padding="6dip"> xml
<ImageView ip
android:id="@+id/icon" it
android:layout_width="wrap_content" io
android:layout_height="fill_parent" im
android:layout_alignParentTop="true"
android:layout_alignParentBottom="true"
android:layout_marginRight="6dip"
android:src="@drawable/icon" />
<TextView
android:id="@+id/secondLine"
android:layout_width="fill_parent"
android:layout_height="26dip"
android:layout_toRightOf="@id/icon"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:singleLine="true"
android:ellipsize="marquee"
android:text="Simple application that shows how to use RelativeLayout" />
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/icon"
android:layout_alignParentRight="true"
android:layout_alignParentTop="true"
android:layout_above="@id/secondLine"
android:layout_alignWithParentIfMissing="true"
android:gravity="center_vertical"
android:text="My Application" />
</RelativeLayout>