2012-02-19 95 views
0

我是新的android的佈局,並希望實現一個像下面顯示的佈局,但是我有點困惑,我應該如何我的佈局在XML中。嵌套的相對和線性佈局

enter image description here

我目前正在一個:

<LinearLayout> 
    <RelativeLayout> 
     <ImageView> 
     <TextView> 
    </RelativeLayout> 
    <LinearLayout> 
     <ImageView> 
     <TextView> 
     <ImageView> 
     <TextView> 
    </LinearLayout> 
</LinearLayout> 

我不想在我的佈局結構複雜化。有沒有更好的方法來構造這個?

回答