onCreate()未被调用

时间:2018-02-10 10:17:02

标签: java android void oncreate

这是我正在使用的代码

    @Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_home);

    showVoiceText.setText("I am working");
}

然而似乎没有被称为......它从不显示“我正在工作”

这是我的xml

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.phoenix.coreai.HomeActivity">

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Core A.I."
    android:id="@+id/showVoiceOutput"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent" />

<Button
    android:id="@+id/button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Enable voice control"
    tools:layout_editor_absoluteX="88dp"
    tools:layout_editor_absoluteY="167dp" />

</android.support.constraint.ConstraintLayout>

这不是我的主要活动,我的主要活动只是一个小型mp4文件的介绍

这是主要的活动代码

package com.example.phoenix.coreai;


import android.content.Intent;
import android.net.Uri;
import android.os.Handler;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.VideoView;

public class MainActivity extends AppCompatActivity {

    VideoView view;
    private static int SPLASH_TIME_OUT = 2700;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        view = (VideoView) findViewById(R.id.videoView);
        videoPlay(view);
        new Handler().postDelayed(new Runnable(){
            @Override
            public void run(){
                Intent homeIntent = new Intent(MainActivity.this, HomeActivity.class);
                startActivity(homeIntent);
                finish();
            }
        },SPLASH_TIME_OUT);
    }

    public void videoPlay(View v){

        String videoPath = "android.resource://com.example.phoenix.coreai/" + R.raw.spashscreen;
        Uri uri = Uri.parse(videoPath);
        view.setVideoURI(uri);
        view.start();
    }
}

,这是主要活动的xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#000000"
    tools:context="com.example.phoenix.coreai.MainActivity">


    <VideoView
        android:id="@+id/videoView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="center"
        android:layout_marginTop="-27dp"
        app:layout_constraintTop_toTopOf="parent"
        tools:layout_editor_absoluteX="0dp">

    </VideoView>


</LinearLayout>

我无法通过我的手机调试应用程序它有一个自定义ROM和android工作室不会识别它

我们假设我想从onCreate

中调用此void
private void musicScan(){
    File f = new File(path);
    File file[] = f.listFiles();
    fileArray = new String[file.length];
    for (int i = 0; i < file.length; ++i){
        fileArray[i] = file[i].getName();
    }
}

它似乎没有执行我正在调用的空白

2 个答案:

答案 0 :(得分:0)

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_home);
    TextView showVoiceText = (TextView) findViewById(R.id.showVoiceOutput);

    showVoiceText.setText("I am working");
}

[也许你需要删除第一个“TextView”,如果它已经在另一个地方声明,但是因为我们没有完整的代码......]

但仍然很高兴知道您的主要活动如何开始/调用此活动

答案 1 :(得分:0)

我认为问题在于您声明了一个全局TextView并将其称为showVoiceText,但您从未初始化它

解决方案是在setContentView之后将其初始化,如下所示:

showVoiceText=(TextView) findViewById(R.id.showVoiceOutput);