gpt4 book ai didi

android - 由于符号无效,构建失败

转载 作者:行者123 更新时间:2023-12-03 08:55:36 25 4
gpt4 key购买 nike

enter image description here enter image description here picture shows res/drawables( doesnot contain any "final" image and error shown too added pics for drawable folder enter image description here我的drawables文件夹中有一些图像,其中一个称为“最终”。当我运行我的项目时,出现以下错误:

Error:Execution failed for task ':app:processDebugResources'.
> com.android.ide.common.internal.LoggedErrorException: Failed to run command:
C:\android\adt-bundle-windows-x86_64-20140702\sdk\build-tools\android-4.4W\aapt.exe package -f - -no-crunch -I C:\android\adt-bundle-windows-x86_64-20140702\sdk\platforms\android-20\android.jar -M C:\Users\SHREYA BISHT\AndroidStudioProjects\staymax\app\build\intermediates\manifests\full\debug\AndroidManifest.xml -S C:\Users\SHREYA BISHT\AndroidStudioProjects\staymax\app\build\intermediates\res\debug -A C:\Users\SHREYA BISHT\AndroidStudioProjects\staymax\app\build\intermediates\assets\debug -m -J C:\Users\SHREYA BISHT\AndroidStudioProjects\staymax\app\build\generated\source\r\debug -F C:\Users\SHREYA BISHT\AndroidStudioProjects\staymax\app\build\intermediates\res\resources-debug.ap_ --debug-mode --custom-package com.appt.shreyabisht.staymax -0 apk
Error Code:
1
Output:
res\drawable-hdpi-v4\final.jpg:0: error: invalid symbol: 'final'

这是我已经做的:
1.删​​除图像并使用不同的名称重新导入,并在我使用图像的 xml 文件中进行了更改。同样的错误。
2.运行无效并重新启动。同样的错误
3.运行干净的项目。同样的错误。

请建议。

Activity 主:
<RelativeLayout 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:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity"
android:background="@drawable/backw"
android:id="@+id/lay">

<TextView android:text="StayMax" android:layout_width="wrap_content"
android:textSize="30dp"
android:textStyle="bold"


android:layout_height="wrap_content"
android:id="@+id/textView"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true" />

<Button
android:layout_width="80dp"
android:layout_height="40dp"
android:text="@string/sign_in"


android:id="@+id/btn_first"
android:layout_below="@+id/textView"
android:layout_centerHorizontal="true"
android:layout_marginTop="87dp" />

</RelativeLayout>

这是第二页:

<TextView android:text="@string/title_signin" android:layout_width="wrap_content"
android:textSize="15dp"
android:layout_height="44dp"

/>


<Space
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0.33" />

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">

<TextView
android:layout_width="120dp"
android:layout_height="wrap_content" />

</LinearLayout>

<LinearLayout
android:layout_width="wrap_content"
android:orientation="vertical" android:layout_height="wrap_content">

</LinearLayout>

<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/user"
/>

<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Password :"/>

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Sign In"
android:id="@+id/sign"
android:layout_gravity="center_horizontal" />


</LinearLayout>

这是第三页:
<RelativeLayout 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/backgr"
tools:context="com.appt.shreyabisht.staymax.hotel_home"

>

<TextView android:text="Welcome to Ayaya"
android:layout_width="wrap_content"

android:textSize="15dp"

android:textColor="#FFFFFF"
android:layout_height="wrap_content"
android:id="@+id/textView2"
android:layout_centerHorizontal="true"
android:layout_gravity="center_horizontal"
android:layout_weight="0.35" />

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/room_service"
android:textSize="15dp"
android:id="@+id/btn_service"
android:layout_toStartOf="@+id/textView2"
android:layout_marginBottom="104dp"
android:background="#a1ef7c2d"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hotel_amenities"
android:textSize="15dp"
android:id="@+id/btn_amn"
android:background="#a1ef7c2d"
android:layout_toEndOf="@+id/btn_service"
android:layout_toStartOf="@+id/button6"
android:layout_alignTop="@+id/btn_service"
android:layout_toRightOf="@+id/btn_service" />

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/trans"
android:textSize="15dp"
android:id="@+id/btn_trans"
android:background="#a1ef7c2d"
android:layout_toEndOf="@+id/btn_amn"
android:layout_alignTop="@+id/btn_amn"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true" />


</RelativeLayout>

对于接下来的三页,我正在尝试设置选项卡 ScrollView (它们是子菜单)

所以第一个子菜单:
activity_amn_menu.xml

<TextView android:text="@string/hello_world" android:layout_width="wrap_content"
android:layout_height="wrap_content" />

</RelativeLayout>

第二个子菜单:
activity_trans_menu.xml
<RelativeLayout 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:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="com.appt.shreyabisht.staymax.trans_menu">

<TextView android:text="@string/hello_world" android:layout_width="wrap_content"
android:layout_height="wrap_content" />

</RelativeLayout>

第三个菜单:
Activity 服务菜单.xml
<RelativeLayout 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:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context="com.appt.shreyabisht.staymax.service_menu"
>


<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/dining"
android:id="@+id/button"
android:textSize="15dp"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Laundry"
android:id="@+id/button2"
android:textSize="15dp"
android:layout_alignParentBottom="true"
android:layout_toRightOf="@+id/button"
android:layout_toEndOf="@+id/button" />

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="15dp"
android:text="House Keeping"
android:id="@+id/button3"
android:layout_alignParentBottom="true"
android:layout_toRightOf="@+id/button2"
android:layout_toEndOf="@+id/button2" />
</RelativeLayout>

注意:这个项目一直运行到昨天,今天我决定加入 viewpager,这样它们现在可能不会在你的机器上运行。

最佳答案

最终 是一个Java保留字,你不能这样命名你的图像,选择另一个名称,任何其他名称,但不要选择任何保留字,如静态 , 公众 , 整数 , 异常 , ...ETC。

here 中的 Java 保留字列表.

关于android - 由于符号无效,构建失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27144272/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com