android:intent startactivity在oncreate中提供空白屏幕

dauxcl2d  于 2021-08-25  发布在  Java
关注(0)|答案(1)|浏览(281)

我检查了toast message和key.retrieveapi的条件是否为0,但活动未启动,我在日志中也没有看到任何错误。这是我的密码:

protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        ApiKeyDao key=new ApiKeyDao(this);
        setContentView(R.layout.activity_main);
        //Toast.makeText(this, "user"+key.retrieveApi().status, Toast.LENGTH_SHORT).show();
        if(key.retrieveApi()==null) {
            setContentView(R.layout.activity_main);
        }
        else if(key.retrieveApi().getStatus()==1) //1== Existing user
        {
            Intent profile=new Intent(this,HomeFeed.class);
            startActivity(profile);
        }
        else if(key.retrieveApi().getStatus()==0) // 0= new user
        {
            Toast.makeText(this, "working", Toast.LENGTH_SHORT).show();
            Intent profile=new Intent(MainActivity.this,ProfileActivity.class);
            profile.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
            startActivity(profile);
        }
        else
        {
            setContentView(R.layout.activity_main);
        }

任何帮助都将不胜感激。

cgh8pdjw

cgh8pdjw1#

你试过了吗?意图概要文件=新意图(此,profileactivity.class);

相关问题