我正在尝试更改背景图片。我以为我做错了所以我搜索了答案并找到了here
我的代码完全按照答案提示,但它不起作用。我可以很容易地改变背景的颜色,但是当我尝试放置背景图像时它会失败。我的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>
答案 0 :(得分:2)
我明白了。问题根本不在于我的代码。我使用了photoshop,由于某种原因,jpg文件以CMYK颜色模式保存。在我将设置切换到RBG并将文件重新保存为png后,一切正常。当问题不在我的代码中时,我无法相信我花了这么多时间在这上面。希望如果他们遇到类似的问题,这将节省一些人的时间。