gpt4 book ai didi

java - 工具栏 - 应用程序不断停止

转载 作者:太空宇宙 更新时间:2023-11-04 09:32:32 29 4
gpt4 key购买 nike

这是我的 list 文件:

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

<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"

android:theme="@style/Theme.AppCompat.Light.NoActionBar">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

这是我的 Activity 布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<android.support.v7.widget.Toolbar
android:id="@+id/my_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="4dp"
android:background="@color/colorPrimary"
app:layout_constraintTop_toTopOf="parent"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
</android.support.constraint.ConstraintLayout>

这是我的主要 Activity :

package com.example.exercise1;

import androidx.appcompat.app.AppCompatActivity;
import androidx.appcompat.widget.Toolbar;


import android.os.Bundle;

public class MainActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

Toolbar myToolbar = findViewById(R.id.my_toolbar);
setSupportActionBar(myToolbar);
}
}

我没有收到任何有关错误的信息,一切都编译没有任何问题,但应用程序最终无法启动,并且我收到一条消息:应用程序已停止。我应该怎么做才能使应用程序运行?

最佳答案

在您的 java 文件中,您导入了 androidx 库的工具栏,这与声明 android 支持库工具栏的布局 xml 文件形成鲜明对比。删除 java 文件中 Toolbar 的导入语句,并将其替换为支持库 Toolbar。

关于java - 工具栏 - 应用程序不断停止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56910278/

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