私はアンドロイド開発が初めてです。values.xml
テスト アプリを実行すると、ファイルにコンパイル エラー メッセージが表示され続ける
Gradle: String types not allowed (at 'myimage.jpg' with value 'myimage.jpg')
myimage.jpg
そのため、ファイルから参照を削除しmain.xml
ましたが、同じメッセージが表示され続けます (プロジェクトをクリーンアップした後、IDE を再起動しました)
編集:ここに私のvalues.xmlファイルがあります
<?xml version="1.0" encoding="utf-8"?>
<resources>
<dimen name="activity_horizontal_margin">16dp</dimen>
<dimen name="activity_vertical_margin">16dp</dimen>
<drawable name="myimage.jpg">hey_image_ny.jpg</drawable>
<drawable name="image_ny.jpg">image_ny.jpg</drawable>
<drawable name="oups.jpg">oups</drawable>
<string name="action_settings">Settings</string>
<string name="app_name">gproject</string>
<string name="hello_world">Hello world!</string>
<style name="AppBaseTheme" parent="android:Theme.Light">
<!--
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
-->
</style>
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
</style>
</resources>
そして私のレイアウト
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/oups">
</LinearLayout>