- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
是的,我知道这个问题已经被问过很多次了,但没有一个答案对我真正有用?我想也许有人只需要解释我的代码。
我的应用程序在 SplashScreen.java 上启动 10 秒,然后应该加载 MainActivity.java 。但是,当我运行我的应用程序时,它启动了 SplashScreen,但 10 秒后,MainActivity 未加载,应用程序说它已停止。
我检查了运行日志,它说“android.content.ActivityNotFoundException:找不到显式 Activity 类 {com.msp.supercarsounds/com.msp.supercarsounds.MainActivity};您是否在 AndroidManifest.xml 中声明了此 Activity ?” AndroidManifest.xml:<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.msp.supercarsounds">
<uses-sdk android:minSdkVersion="17"
android:targetSdkVersion="22"/>
<uses-permission
android:name="android.permission.INTERNET"/>
<application
android:largeHeap="true"
android:allowBackup="true"
android:icon="@mipmap/carsounds_logo"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name="com.msp.supercarsounds.SplashScreen"
android:theme="@style/Theme.AppCompat.Light.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<activity
android:name="com.msp.supercarsounds.MainActivity" />
<activity
android:name=".AudiPrimary"
android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
<activity
android:name="com.msp.supercarsounds.RegisterApplication"
android:label="Register Appliction"
android:theme="@style/AppTheme" />
<activity
android:name="com.msp.supercarsounds.Porsche"
android:label="Porsche"
android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
<activity
android:name="com.msp.supercarsounds.MercedesBenz"
android:label="Mercedes-Benz"
android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
<activity
android:name="com.msp.supercarsounds.Lamborghini"
android:label="Lamborghini"
android:theme="@style/AppTheme" />
<activity
android:name="com.msp.supercarsounds.Ferrari"
android:label="Ferrari"
android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
<activity
android:name="com.msp.supercarsounds.BMW"
android:label="BMW"
android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
<activity
android:name="com.msp.supercarsounds.Jaguar"
android:label="Jaguar"
android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
<activity
android:name="com.msp.supercarsounds.AstonMartin"
android:label="Aston Martin"
android:theme="@style/AppTheme" />
<activity
android:name="com.msp.supercarsounds.ChooseManufacturer"
android:label="Choose Manufacturer"
android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
<activity
android:name="com.msp.supercarsounds.Audi"
android:label="Audi"
android:theme="@style/Theme.AppCompat.Light.NoActionBar" />
<activity
android:name="com.msp.supercarsounds.About"
android:label="About"
android:theme="@style/AppTheme" />
<activity
android:name="com.msp.supercarsounds.Contact"
android:label="Contact"
android:theme="@style/AppTheme" />
<service
android:name=".MyFirebaseMessagingService">
<intent-filter>
<action
android:name="com.google.firebase.MESSAGING.EVENT"/>
</intent-filter>
</service>
<service
android:name=".MyFirebaseInstanceIDService">
<intent-filter>
<action
android:name="com.google.firebase.INSTANCE.ID.EVENT"/>
</intent-filter>
</service>
</manifest>
SplashScreen.java:
package com.msp.supercarsounds;
import android.content.Intent;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
public class SplashScreen extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.splash_screen_layout);
Thread myThread = new Thread() {
@Override
public void run() {
try {
sleep(10000);
Intent startMainActivity = new Intent(getApplicationContext(), MainActivity.class);
startActivity(startMainActivity);
finish();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
};
myThread.start();
}
}
MainActivity.java:
package com.msp.supercarsounds;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.SharedPreferences;
import android.support.v7.app.AlertDialog;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.text.Html;
import android.view.LayoutInflater;
import android.view.MenuItem;
import android.view.View;
import android.widget.CheckBox;
public class MainActivity extends AppCompatActivity {
public static final String PREFS_NAME = "MyPrefsFile1";
public CheckBox dontShowAgain;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void clickedAbout(View view) {
final int result = 1;
Intent AboutButtonClicked = new Intent (this, About.class);
AboutButtonClicked.putExtra("About", "MainActivity");
startActivityForResult(AboutButtonClicked, result);
}
public void clickedContact(View view) {
final int result = 1;
Intent ContactButtonClicked = new Intent (this, Contact.class);
ContactButtonClicked.putExtra("Contact", "MainActivity");
startActivityForResult(ContactButtonClicked, result);
}
@Override
protected void onResume() {
AlertDialog.Builder adb = new AlertDialog.Builder(this);
LayoutInflater adbInflater = LayoutInflater.from(this);
View eulaLayout = adbInflater.inflate(R.layout.checkbox, null);
SharedPreferences settings = getSharedPreferences(PREFS_NAME, 0);
String skipMessage = settings.getString("skipMessage", "NOT checked");
dontShowAgain = (CheckBox) eulaLayout.findViewById(R.id.skip);
adb.setView(eulaLayout);
adb.setTitle("PLEASE REGISTER THIS APPLICATION!");
adb.setMessage(Html.fromHtml("Please register this application in order to receive newer versions and support!"));
adb.setPositiveButton("I understand", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
String checkBoxResult = "NOT checked";
if (dontShowAgain.isChecked()) {
checkBoxResult = "checked";
}
SharedPreferences settings = getSharedPreferences(PREFS_NAME, 0);
SharedPreferences.Editor editor = settings.edit();
editor.putString("skipMessage", checkBoxResult);
editor.commit();
// Do what you want to do on "OK" action
return;
}
});
adb.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
String checkBoxResult = "NOT checked";
if (dontShowAgain.isChecked()) {
checkBoxResult = "checked";
}
SharedPreferences settings = getSharedPreferences(PREFS_NAME, 0);
SharedPreferences.Editor editor = settings.edit();
editor.putString("skipMessage", checkBoxResult);
editor.commit();
return;
}
});
if (!skipMessage.equals("checked")) {
adb.show();
}
super.onResume();
}
public void clickedSettings(MenuItem item) {
final int result = 1;
Intent SettingsButtonClicked = new Intent (this, About.class);
SettingsButtonClicked.putExtra("About", "MainActivity");
startActivityForResult(SettingsButtonClicked, result);
}
public void clickedSupercarSounds(View view) {
final int result = 1;
Intent SupercarSoundsButtonClicked = new Intent (this, ChooseManufacturer.class);
SupercarSoundsButtonClicked.putExtra("Choose Manufacturer", "MainActivity");
startActivityForResult(SupercarSoundsButtonClicked, result);
}
public void clickedRegisterApplication(View view) {
final int result = 1;
Intent RegisterApplicationButtonClicked = new Intent (this, RegisterApplication.class);
RegisterApplicationButtonClicked.putExtra("Register Application", "MainActivity");
startActivityForResult(RegisterApplicationButtonClicked, result);
}
}
谢谢!
最佳答案
您需要放置您的<activity>
<application>
中的标签AndroidManifest.xml 中的标记。
关于java - Activity 未找到异常 : Unable to find explicit activity class?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41401991/
我对 Android 很陌生,如果问题重复,请避免并发送链接。有三个 Activity A、B 和 C。 Activity A 获取一个用户名,我想在 Activity C 中显示该用户名,但我想先运
我正在尝试制作记事本应用程序,因此每次打开新笔记时,布局都会相同。另外, Activity 的数量(新注释)不应定义得尽可能多 最佳答案 如果 Activity 始终相同,您可能应该创建一个适配器,允
我有 3 个 Activity 。 主窗口 5 个按钮 在按钮的主窗口中按下此窗口打开(将其称为父窗口) 在父窗口按钮上按下此窗口打开调用它作为结束子窗口。 现在从子窗口我从父窗口获取值如下:
我遇到了一个 Activity backstack 问题。假设我的后台有 5 个 Activity :比如 Activity A、 Activity B、 Activity C、 Activity D
我正在寻找必须具有以下附加特征的 JMS 提供程序: 采用多代理,所有代理都必须处于事件状态(无单点故障) 仅在两台机器上进行扩展就足以满足我们的需求 能够保证订购(如果 1 个生产者 + 1 个消费
假设,我有一个由 TabHost 组成的选项卡 Activity 。 TabHost 包含 2 个选项卡,每两个选项卡都有一个 Activity 组。每个 Activity 组包含一项 Activit
我正在开发一个应用程序,我需要根据某些操作导航到特定 Activity 。这是一张图片 我的第一个 Activity 是 ReadingActivity。基于某些操作,用户将被带到 NewProjec
我创建了一个与服务器异步通信的应用程序。当应用程序发出服务器请求时,将创建一个带有“正在加载”通知的新对话框( Activity )。主要 Activity 实现了处理服务器响应的方法,我想在主要 A
我想在我的所有应用程序 Activity 中显示相同的选项菜单。我创建了一个实现菜单的通用 Activity ,并且我所有的进一步 Activity 都扩展了它。 问题:当我需要扩展其他特定 Acti
我有四个 Activity ,即 java 文件 - Activity1.java、activity2.java、activity3.java、activity4.java 和 xml 文件 - Ac
我有两个 Activity 。我想将数据从第二个 Activity 发送到上一个 Activity 。第一个 Activity 有自定义 ListView 和 bean 类。当我点击第二个 Activ
根 Activity 是堆栈中当前的第一个 Activity 还是 list 中指定为启动 Activity 的 Activity ? 支持应用程序 P 在启动时启动 Activity A。然后 A
你好 我想知道您在绘制 Activity 图选择“Activity ”时考虑了哪些关键点? 您如何从要建模的问题中选择 Activity ? 谢谢 最佳答案 Activity 图用于对正在开发的系统和
如何从主 Activity 启动 Activity 并在子 Activity 返回主 Activity 中退出操作后返回主 Activity ? 我已将子 Activity 作为启动器 Intent
我的工作流程如下: 登录 Activity -> ActivityB -> ActivityC -> ActivityD 我想将数据从LoginActivity传递到ActivityD,但不直接传递到
我之前曾尝试获得此问题的答案,但找不到可以解决我的问题的答案。我正在制作保存圆盘高尔夫球分数的应用程序。我的 MainActivity 有 4 个按钮。新比赛、恢复比赛、类(class)和球员。 At
我有一个 tts 非 UI 类和 Activity 类。现在在 Activity 类中,我有一个按钮,用户可以从中选择男声或女声,具体取决于我想要将字符串传递给 tts 类的选择,然后一次tts 类根
问题有点复杂,首先, Activity A 和 Activity B 的 list 中都有 android:noHistory = true 。我有一个自定义 serialized 类,假设 MyCl
在我的应用程序中,我有两个 Activity (AuthenticationActivity 和 MainActivity),每个 Activity 都有一个导航图和大量 fragment 。我创建了
这个问题在这里已经有了答案: 关闭 11 年前。 Possible Duplicate: How can i use compose email activity in tabView? 我想在选项
我是一名优秀的程序员,十分优秀!