gpt4 book ai didi

java - Intent 构造函数参数未定义

转载 作者:行者123 更新时间:2023-12-01 05:12:55 28 4
gpt4 key购买 nike

我想开始一个 Activity ,所以我选择了这个 Class 方式。我知道我可以通过直接在 Intent 构造函数中传递 ACTION NAME 来轻松做到这一点,但我正在学习 android,所以我尝试学习新的方法。我在其他类中使用相同的代码启动了另一个 Activity ,它在那里工作,但在这里它给出了以下错误。我认为这与 THREAD 类有关。

错误是:

The constructor Intent(new Thread(){}, Class) is undefined. 

我该如何解决这个问题?这是代码:

package com.umer.practice2;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;

public class SplashScreen extends Activity{

@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.splashscreen);

Thread timer= new Thread()
{
public void run()
{
try
{
sleep(5000);
}
catch(Exception e)
{
e.printStackTrace();
}
finally
{
Class ourclass = Class.forName("com.umer.practice2.StartingPoint");
Intent myintent= new Intent(this,ourclass); // error
startActivity(myintent);
}
}
};
timer.start();
}

@Override
protected void onPause() {
// TODO Auto-generated method stub
super.onPause();
finish();
}

}

这是类 Activity 的布局,它会产生强制关闭错误。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:hint="hint"
android:id="@+id/fdisp"
/>
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="How many times you eat in a day"
android:gravity="center"
android:id="@+id/but3"
/>


</LinearLayout>

这是类本身的代码

    package com.umer.practice2;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;

public class MyClass extends Activity{

Button b3;
TextView disp;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
b3= (Button) findViewById(R.id.but3);
disp= (TextView) findViewById(R.id.fdisp);

b3.setOnClickListener(new View.OnClickListener() {

@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
disp.setText("It depends ");
}
});
}
}

最佳答案

只需将 Intent 创建替换为:

Intent myintent= new Intent(SplashScreen.this, StartingPoint.class);

否则,this 引用封闭的 Thread

关于java - Intent 构造函数参数未定义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11795993/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com