我查找了类似的问题,但他们的解决方案无效。我的相对布局是添加左边距。
这是我的XML:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_margin="0dp"
android:fillViewport="true"
android:padding="0dp" >
<ImageView
android:id="@+id/imageViewUserProfile"
android:layout_width="114dp"
android:layout_height="98dp"
android:layout_alignParentTop="false"
android:layout_margin="0dp"
android:adjustViewBounds="true"
android:padding="0dp"
android:src="@drawable/default_t" />
<TextView
android:id="@+id/textViewUserProfileName"
android:layout_width="fill_parent"
android:layout_height="44dp"
android:layout_alignParentTop="true"
android:layout_centerVertical="true"
android:layout_toRightOf="@id/imageViewUserProfile"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/textViewUserProfileHighlights"
android:layout_width="fill_parent"
android:layout_height="30dp"
android:layout_toRightOf="@id/imageViewUserProfile"
android:layout_below="@id/textViewUserProfileName"/>
</RelativeLayout>
</LinearLayout>
我删除了父级LinearLayout以仔细检查左边的填充是否来自至少RelativeLayout块。我尝试过大多数适用于其他人的东西。任何帮助或建议将不胜感激。
答案 0 :(得分:1)
对于ImageView,将alignParentTop和alignParentLeft设置为true也会删除LinearLayout,这是不必要的。