gpt4 book ai didi

android-studio - 必须声明元素 LinearLayout

转载 作者:行者123 更新时间:2023-12-03 15:56:12 42 4
gpt4 key购买 nike

我已经更新了我的 android studio,现在我的 main.xml 出现问题,它显示以下错误:element LinearLayout must be declared这是我的代码:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:gravity="center_vertical|center_horizontal"
>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/monBouton"
android:text="Cliquez ici !"
>
</Button>
</LinearLayout>
这是错误消息:

error : Execution failed for task ':app:compileDebugJava'.Compilation failed; see the compiler error output for details.

error : cannot find symbol variable action_settings


我该如何解决?

最佳答案

确保您有 action_settings在菜单的 xml 文件中定义

res/menu/yourmenufile.xml

像这样 :
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
tools:context="com.example.app" >

<item android:id="@+id/action_settings"
android:title="@string/action_settings"
android:orderInCategory="100"
app:showAsAction="never" />
</menu>

关于android-studio - 必须声明元素 LinearLayout,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21917525/

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