2012-02-19 142 views
0

我是新的android的布局,并希望实现一个像下面显示的布局,但是我有点困惑,我应该如何我的布局在XML中。嵌套的相对和线性布局

enter image description here

我目前正在一个:

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

我不想在我的布局结构复杂化。有没有更好的方法来构造这个?

回答

相关问题