開發問題及解決--java.lang.IllegalStateException: Circular dependencies cannot exist in RelativeLayout

來源:互聯網
上載者:User

標籤:ati   not   sch   android   layout   illegal   java   控制項   style   

  1. <?xml version="1.0" encoding="utf-8"?>  
  2. <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"  
  3.     android:layout_width="fill_parent"  
  4.     android:layout_height="wrap_content" >  
  5.   
  6.     <HorizontalScrollView  
  7.         android:layout_width="fill_parent"  
  8.         android:layout_height="wrap_content" >  
  9.   
  10.         <RelativeLayout  
  11.             android:layout_width="fill_parent"  
  12.             android:layout_height="fill_parent">  
  13.   
  14.             <TextView  
  15.                 android:id="@+id/textview1"  
  16.                 android:layout_width="wrap_content"  
  17.                 android:layout_height="wrap_content"  
  18.                 android:text="滾動視圖"  
  19.                 android:textSize="30dp" />  
  20.   
  21.             <ImageView  
  22.                 android:id="@+id/imageview1"  
  23.                 android:layout_width="wrap_content"  
  24.                 android:layout_height="wrap_content"  
  25.                 android:layout_toRightOf="@id/textview1"  
  26.                 android:src="@drawable/item1" />  
  27.   
  28.             <TextView  
  29.                 android:id="@+id/textview2"  
  30.                 android:layout_width="wrap_content"  
  31.                 android:layout_height="wrap_content"  
  32.                 android:layout_toRightOf="@id/imageview1"  
  33.                 android:text="垂直和水平滾動"  
  34.                 android:textSize="30dp" />  
  35.   
  36.             <ImageView  
  37.                 <span style="color:#ff6666;">android:id="@+id/imageview2"  
  38. </span>                android:layout_width="wrap_content"  
  39.                 android:layout_height="wrap_content"  
  40.                 android:layout_below="@id/textview1"  
  41.                 android:src="@drawable/item2" />  
  42.   
  43.             <TextView  
  44.                 android:id="@+id/textview3"  
  45.                 android:layout_width="wrap_content"  
  46.                 android:layout_height="wrap_content"  
  47.                 android:layout_below="@id/imageview2"  
  48.                 android:text="垂直和水平滾動"  
  49.                 android:textSize="30dp" />  
  50.   
  51.             <ImageView  
  52.                <span style="color:#ff6666;"> android:id="@+id/imageview2"</span>  
  53.                 android:layout_width="wrap_content"  
  54.                 android:layout_height="wrap_content"  
  55.                 android:layout_below="@id/textview3"  
  56.                 android:src="@drawable/item3" />  
  57.         </RelativeLayout>  
  58.     </HorizontalScrollView>  
  59.   
  60. </ScrollView>  

爆出了這樣的異常,java.lang.IllegalStateException: Circular dependencies cannot exist in RelativeLayout。

原因就是在RelativeLayout布局中重現了重複的view ID名稱,且出現 imageview2 ,textview3,imageview2出現了循環相依性。

解決方案: 將最後一個ImageView的id修改成 imageview3.  避免在RelativeLayout中控制項循環相依性。

 

實質是:1的位置依賴相對於2  2的位置又依賴相對於1 但這兩相對位置產生了矛盾。

開發問題及解決--java.lang.IllegalStateException: Circular dependencies cannot exist in RelativeLayout

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.