1
I’m a beginner in Android and am creating an app that has two activities (SplashScreen
and ActivityMain
).
I managed to bring out the SplashScreen
after much sacrifice, however, when installed on the device, appears the message:
****** has stopped
Can someone help me?
Below follows the code of SplashScreen
package bbacpropaganda.microfapp;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.os.Handler;
import android.view.WindowManager;
public class SplashScreen extends AppCompatActivity {
//Set waktu lama splashscreen
private static int splashInterval = 2000;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_splash_screen);
//Após alguns segundos vai para atividade principal
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
new Handler().postDelayed(new Runnable() {
@Override
public void run() {
// TODO Auto-generated method stub
Intent i = new Intent(SplashScreen.this, MainActivity.class);
startActivity(i);
//jeda selesai Splashscreen
}
}, splashInterval);
//Fim de alguns segundos vai para atividade principal
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.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);
}
}
can you put the error that appears in the console?? Probably the error happens because you have not declared this new Activity in the manifest.
– Lucas Eduardo
Could be some problem in
onCreate
of the other Activity also.– Pablo Almeida
Lucas and Pablo, fighting for strength!
– Felipe Edwards Vanstocher