我查找了类似的问题,但他们的解决方案不起作用。我的相对布局正在添加左填充。
这是我的 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 块。我已经尝试了大多数对其他人有用的方法。任何帮助或建议将不胜感激。