0

我正在尝试更改我的背景图片。我以为我做错了什么所以我搜索了答案并在这里找到了

我的代码完全按照答案的建议,但是它不起作用。我可以轻松更改背景的颜色,但是当我尝试放置背景图像时它失败了。我的 jpg (480X800) 资源在 drawable-hdpi 中。我尝试将分辨率更改为 800x480。

到目前为止,我只编辑了 activity_main.xml 并添加了一些资源:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/vertical_lines"
    tools:context=".Main" >

    <!--
         The primary full-screen view. This can be replaced with whatever view
         is needed to present your content, e.g. VideoView, SurfaceView,
         TextureView, etc.
    -->

    <TextView
        android:id="@+id/fullscreen_content"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center"
        android:keepScreenOn="true"
        android:text="@string/dummy_content"
        android:textColor="#33b5e5"
        android:textSize="50sp"
        android:textStyle="bold" />

    <!--
         This FrameLayout insets its children based on system windows using
         android:fitsSystemWindows.
    -->

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true" 
        android:background="@drawable/vertical_lines" >

        <LinearLayout
            android:id="@+id/fullscreen_content_controls"
            style="?buttonBarStyle"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_gravity="bottom|center_horizontal"
            android:background="@color/black_overlay"
            android:orientation="horizontal"
            tools:ignore="UselessParent" >

            <Button
                android:id="@+id/dummy_button"
                style="?buttonBarButtonStyle"
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:text="@string/dummy_button" />
        </LinearLayout>
    </FrameLayout>

</FrameLayout>
4

1 回答 1

2

我想到了。问题根本不在于我的代码。我使用过 Photoshop,出于某种原因,jpg 文件以 CMYK 颜色模式保存。在我将设置切换为 RBG 并将文件重新保存为 png 后,一切正常。当问题甚至不在我的代码中时,我不敢相信我花了这么多时间。如果他们遇到类似的问题,希望这可以节省他们的时间。

于 2013-04-28T06:34:09.803 回答