android – 错误:文件名必须以.xml或.png结尾

虽然我没有选择photothumb.db作为drawable,但我得到一个错误,说photothumb.db应该以.xml或.png结尾

我的profilemaller图像是png类型

以下是我的代码

<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/profilesmaller"
    tools:context="charlenebuena.guest.HomeFragment">
</FrameLayout>

以下是我的Gradle控制台消息

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':app:mergeDebugResources'.
> C:\Users\Charlene Marie\AndroidStudioProjects\Guest\app\src\main\res\drawable\photothumb.db: Error: The file name must end with .xml or .png

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.

BUILD FAILED

Total time: 2.72 secs

最佳答案 Android仅接受.png,.jpg,.gif和.xml文件作为可绘制资源.如果您有.db文件,则将该文件放在assets文件夹中.

点赞