Я использую следующий код, чтобы перейти от first
активности в ListViewCheckboxes
активности, автоматически через 5 секунд, но он имеет следующие ошибки:ошибка происходит от по активности к другому автоматически
public class first extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.firstlayout);
final Handler handler = new Handler();
handler.postDelayed(new Runnable() {
public void run() {
// TODO: Your application init goes here.
Intent mInHome = new Intent(first.this, InvoiceASAPTabActivity.class);
first.this.startActivity(mInHome);
first.this.finish();
}
}, 3000);
}
}
Error:(17, 33) error: Handler is abstract; cannot be instantiated Error:(21, 57) error: cannot find symbol class InvoiceASAPTabActivity Error:(18, 16) error: cannot find symbol method postDelayed(,int)
Я d действительно цените, если кто-то может помочь, спасибо!
Похоже, вы пропустили много импорта. – yedidyak
У меня есть: import android.app.Activity; импорт android.content.Intent; import android.os.Bundle; импорт android.os.Handler; – niloofar