我想在将当前类重定向到另一个类后显示消息。但是这段代码只显示消息,而不是重定向到另一个类。我也尝试了单独的 Handler 类,但没有工作。请帮助解决prbm。
but.setOnClickListener(new View.OnClickListener()
{
public void onClick(final View v)
{
new Thread(new Runnable()
{
public void run()
{
try
{
/* sample code */
showToast();
}
catch (IOException e)
{
}
}
}
).start();
}
public void showToast() {
hd.post(new Runnable() {
public void run() {
Intent myIntent = new Intent(v.getContext(), List.class);
startActivity(myIntent);
Toast.makeText(getApplicationContext(),"Redirect to main menu", Toast.LENGTH_SHORT).show();
}
});
}
});