あなたの助けが必要です... 私はアプリを持っています。onCreate() にスプラッシュ スクリーンがあります。コードは次のとおりです。
public class MainActivity extends Activity {
private final int SPLASH_DISPLAY_LENGHT = 3000;
@Override
public void onCreate(Bundle icicle) {
super.onCreate(icicle);
super.setTheme(R.style.Fullscreen);
setContentView(R.layout.activity_main);
/* New Handler to start the Menu-Activity
* and close this Splash-Screen after some seconds.*/
new Handler().postDelayed(new Runnable(){
@Override
public void run() {
/* Create an Intent that will start the Menu-Activity. */
Intent mainIntent = new Intent(MainActivity.this,List.class);
MainActivity.this.startActivity(mainIntent);
MainActivity.this.finish();
}
}, SPLASH_DISPLAY_LENGHT);
}
Macbook air から OS X をアンインストールし、Ubuntu をインストールして、プロジェクトをインポートしました。今はクラッシュするだけです... 助けてもらえますか?詳細が必要な場合は、お尋ねください!