ImageView 在 RelativeLayout 中使用 android:layout_alignParentLeft="true" 不左对齐

ImageView Does not Align Left using android:layout_alignParentLeft="true" in RelativeLayout

我不确定为什么会发生这种情况 - 但是我有一个 imageView 我正试图在我的屏幕左侧实现 - 但是当我尝试 运行 布局时它居中我不确定为什么。

非常感谢任何建议。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/ListView_layout"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:weightSum="1" >

    <RelativeLayout
        android:id="@+id/rl_ListView2"
        android:layout_width="fill_parent"
        android:layout_height="match_parent" >

        <ImageView
            android:id="@+id/imageView1"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:gravity="left" />

        <ProgressBar
            android:id="@+id/progressbar_Horizontal"
            style="?android:attr/progressBarStyleHorizontal"
            android:layout_width="340dp"
            android:layout_height="15dp"
            android:layout_centerHorizontal="true"
            android:layout_centerVertical="true"
            android:max="100"
            android:progressDrawable="@drawable/progressbar2" />

        <ImageView
            android:id="@+id/downloadbtn"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_above="@+id/progressbar_Horizontal"
            android:layout_centerHorizontal="true"
            android:layout_marginBottom="10dp"
            android:src="@drawable/button_download" />

        <RelativeLayout
            android:id="@+id/footer"
            style="@android:style/ButtonBar"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:orientation="horizontal" >

            <Button
                android:id="@+id/saveButton"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />
        </RelativeLayout>
    </RelativeLayout>

</LinearLayout>

按如下方式更改 imageView1 的布局:

<ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:adjustViewBounds="true"
        android:layout_height="fill_parent"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:gravity="left" />

您将 imageView 的宽度设置为填充父级,这导致了问题。此代码段填充高度,然后根据图像的尺寸调整宽度。

您的图片宽度和高度设置为 "fill_parent" - 尝试将它们都设置为 "wrap_content"。

试试这个?

<ImageView
        android:id="@+id/downloadbtn"
        android:layout_width="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_height="wrap_content"
        android:layout_above="@+id/progressbar_Horizontal"
        android:layout_centerHorizontal="true"
        android:layout_marginBottom="10dp"
        android:src="@drawable/button_download"/>

这对我有用:)

当我没有在 ImageView 上设置任何固定尺寸时,我遇到了类似的问题。尝试给 ImageView 固定高度和宽度。对我有用吗。