我只想为启动画面编码。因为我使用了意图,但是我收到的错误是找不到指导源。我有两个文件splashscreen.java
和myapps.java
,其中我使用线程概念并将其他活动称为
finally
{
finish();
startActivity(new Intent("com.example.MyApps"));
stop();
}
@ startAcitivy我得到了axception请指导我,我必须修改androidmanifest文件吗?如果是,请为我提供语法。
答案 0 :(得分:1)
添加
<activity android:name="com.example.MyApps"></activity>
在你的清单中。
答案 1 :(得分:1)
如果您有意图开始新的活动,我更喜欢使用它:
Intent intent = new Intent(MyClass.this, MyApps.class);
startActivity(intent);
并在您的MyApps
类的清单上正确输入,例如:
<application>
.......
.....
<activity android:name="com.example.MyApps" />
........
</application>