2013-07-21 86 views
1

我一直无法让这个LinearLayout移动到它的父亲RelativeLayout的垂直中心。我尝试了很多方法,也许我使用了错误的方法,但我不确定。有人可以检查它,看看我需要添加什么。谢谢。 LinearLayout右侧有一些TextViews,但我没有包含它们,因为您不需要它们,但只记得布局需要位于RelativeLayout的垂直中心,而不是整个中心。ImageView到RelativeLayout的中间 - Android

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:background="@drawable/background_card" 
    android:orientation="horizontal" 
    android:padding="5dip" > 

<!-- ListRow Left sied Thumbnail image --> 
    <LinearLayout android:id="@+id/thumbnail" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:padding="3dip"  
     android:layout_alignParentLeft="true" 
     android:gravity="center" 
     android:background="@drawable/image_bg" 
     android:layout_marginRight="5dip"> 

    <ImageView 
     android:id="@+id/list_image" 
     android:layout_width="50dip" 
     android:layout_height="50dip" 
     android:src="@drawable/thumb"/> 

</LinearLayout> 

回答

3

如果需要垂直居中一个元素的RelativeLayout里面,你的具体情况的LinearLayout,再加入android:layout_centerVertical="true"属性的LinearLayout中。

1

第一相对内部全部采用线性的是不是一个好主意,我喜欢ü改变这种状况,但仍然如果u想保持一致,在middel不能动线布局,我只好移动UR图像

现在有有很多方法,如

android:layout_alignParentTop="true" android:layout_centerHorizontal="true" android:layout_centerVertical="true"

,再加上你可以给保证金-inputs手动

android:layout_marginTop="162dp" android:layout_marginleft="80dp" ..

首先尝试这些,但仍然强烈建议使用线性或相对,并且可以始终在设计视图中拖动您的UI。

+1

我必须使用两种不同的布局,因为每种布局都有不同的背景xml文件。现在我想知道如果没有可绘制的xml文件之一,我是否可以做到这一点 – ThePoloDoc

+0

是的,你可以,但基本的想法是保持它们在最开始的时候是相同的,也就是相对的或者是Linear ..,但是就像你刚刚做的那样你可以使用相对和你可以通过使用'android:layout_alignParentTop =“true”android:layout_centerHorizo​​ntal =“true”android:layout_centerVertical =“true”'这些和他们手动拖动它们或给边缘调整你的用户界面... – yug

相关问题