針對RelativLayout的alignWithParentIfMissing屬性問題

針對RelativeLayout佈局,有一點問題,須要明確,由於它內部是多個view間的關係肯定的框架,那麼當其中的一個view因其它view隱藏後,會影響其相關的views,因此安卓提供一屬性解決此問題alignWithParentIfMissing用於解決相似問題android

當某一個View沒法找到與其相關的views時,就找到alignWithParentIfMissing的設定判斷是否與父級view對齊app

  1. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"    框架

  2.         android:layout_width="fill_parent"    佈局

  3.         android:layout_height="?android:attr/listPreferredItemHeight"    spa

  4.         android:padding="6dip">    xml

  5.     <ImageView    ip

  6.         android:id="@+id/icon"    it

  7.         android:layout_width="wrap_content"    io

  8.         android:layout_height="fill_parent"    im

  9.         android:layout_alignParentTop="true"    

  10.         android:layout_alignParentBottom="true"    

  11.         android:layout_marginRight="6dip"    

  12.         android:src="@drawable/icon" />    

  13.     <TextView      

  14.         android:id="@+id/secondLine"    

  15.         android:layout_width="fill_parent"    

  16.         android:layout_height="26dip"     

  17.         android:layout_toRightOf="@id/icon"    

  18.         android:layout_alignParentBottom="true"    

  19.         android:layout_alignParentRight="true"    

  20.         android:singleLine="true"    

  21.         android:ellipsize="marquee"    

  22.         android:text="Simple application that shows how to use RelativeLayout" />    

  23.     <TextView    

  24.         android:layout_width="fill_parent"    

  25.         android:layout_height="wrap_content"    

  26.         android:layout_toRightOf="@id/icon"    

  27.         android:layout_alignParentRight="true"    

  28.         android:layout_alignParentTop="true"    

  29.         android:layout_above="@id/secondLine"    

  30.         android:layout_alignWithParentIfMissing="true"    

  31.         android:gravity="center_vertical"    

  32.         android:text="My Application" />    

  33. </RelativeLayout>   

相關文章
相關標籤/搜索