我正在为我的应用制作启动画面,我正在关注本教程:Android Programming Tutorial - 4 - Adding a Splash Screen。但由于某种原因,当我创建启动画面活动时,它会抛出错误!
package com.haziqhussain.hazgames;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
public class SplashScreen {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash_screen);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.splash_screen, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
//noinspection SimplifiableIfStatement
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
一切看似正常,但有些代码没有。
答案 0 :(得分:4)
您需要扩展ActionBarActivity
课程。 ActionBarActivity
包含您尝试覆盖的方法。
答案 1 :(得分:0)
不一定是 ActionBarActivity 。每当您的班级使用活动(OnCreate(),OnStart(),OnPause等)的生命周期状态时,您必须扩展活动,因为所有活动都是如此classes是android.app.Activity的子类。