我想开始一项活动,所以我选择了这种类方式。我知道我可以通过直接在意图构造函数中传递ACTION NAME来轻松完成,但我正在学习android,所以我试图学习新的方法。我在其他类中使用相同的代码启动了另一个活动,它在那里工作,但在这里它给出了以下错误。我认为它与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();
}
}
这是类活动的布局,它给出了强制关闭错误。
<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 ");
}
});
}
}
答案 0 :(得分:0)
只需通过以下方式替换意图创建:
Intent myintent= new Intent(SplashScreen.this, StartingPoint.class);
否则,this
引用封闭的Thread
类
答案 1 :(得分:0)
您可以按以下方式致电
-deployment-controller-sync-period duration Default: 30s
Period for syncing the deployments.
它将起作用。试试吧。