我一直无法让这个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>
我必须使用两种不同的布局,因为每种布局都有不同的背景xml文件。现在我想知道如果没有可绘制的xml文件之一,我是否可以做到这一点 – ThePoloDoc
是的,你可以,但基本的想法是保持它们在最开始的时候是相同的,也就是相对的或者是Linear ..,但是就像你刚刚做的那样你可以使用相对和你可以通过使用'android:layout_alignParentTop =“true”android:layout_centerHorizontal =“true”android:layout_centerVertical =“true”'这些和他们手动拖动它们或给边缘调整你的用户界面... – yug