android-半图像背景变黑

时间:2016-05-30 17:43:21

标签: android eclipse

我的对话框布局中有图像视图,但是他们中的一半在运行时变黑(所有图像都是png格式)

enter image description here

这是此部分的XML布局代码:

<LinearLayout
    android:id="@+id/linearLayout1"
    android:layout_width="wrap_content"
    android:layout_height="@dimen/_40sdp"
    android:layout_centerHorizontal="true"
    android:layout_marginTop="@dimen/_72sdp"
    android:divider="@drawable/linearspace"
    android:gravity="center_horizontal"
    android:orientation="horizontal"
    android:showDividers="middle" >

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="match_parent" >
         <ImageView
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:adjustViewBounds="true"
            android:background="@android:color/transparent"
            android:scaleType="fitCenter"
            android:src="@drawable/staroff" />
        <ImageView
            android:id="@+id/star1"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:adjustViewBounds="true"
            android:background="@android:color/transparent"
            android:scaleType="fitCenter"
            android:src="@drawable/staron" />

    </RelativeLayout>

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="match_parent" >
         <ImageView
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:adjustViewBounds="true"
            android:background="@android:color/transparent"
            android:scaleType="fitCenter"
            android:src="@drawable/staroff" />
        <ImageView
            android:id="@+id/star2"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:adjustViewBounds="true"
            android:background="@android:color/transparent"
            android:scaleType="fitCenter"
            android:src="@drawable/staron" />

    </RelativeLayout>
    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="match_parent" >
         <ImageView
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:adjustViewBounds="true"
            android:background="@android:color/transparent"
            android:scaleType="fitCenter"
            android:src="@drawable/staroff" />
        <ImageView
            android:id="@+id/star3"
            android:layout_width="wrap_content"
            android:layout_height="fill_parent"
            android:adjustViewBounds="true"
            android:background="@android:color/transparent"
            android:scaleType="fitCenter"
            android:src="@drawable/staron" />

    </RelativeLayout>
</LinearLayout>

所有3张图片的代码都相同,但只有其中一张看起来很好。

0 个答案:

没有答案