2014-02-19 48 views
0

像絕對佈局所示的錯誤是折舊的。我不明白什麼毛病,使用此佈局使用絕對佈局有錯嗎

<AbsoluteLayout 
     android:layout_width="match_parent" 
     android:layout_height="0px" 
     android:layout_weight="1" > 

     <WebView 
      android:id="@+id/webView1" 
      android:layout_width="fill_parent" 
      android:layout_height="fill_parent" /> 

     <ImageView 
      android:id="@+id/slideimage" 
      android:layout_width="fill_parent" 
      android:layout_height="420dp" 
      android:src="@drawable/no_image" /> 

</AbsoluteLayout> 

回答

0

depreciated這意味着它是舊的,現在是更換新的方法。

除非您僅爲特定屏幕設備開發,否則不應使用絕對佈局。

+0

Thaq。但爲了獲得最佳性能,應使用哪種佈局來獲得絕對佈局的相同效果 – vanooja

+0

@ user3096252始終使用RelativeLayout。 – user3322955

+0

@ user3096252'AbsoluteLayout'的替代品是'FrameLayout'。 – TactMayers