-1

認証を使用してページにアクセスしています。認証後、ユーザーのみがページにアクセスします。onbackpressed()のコードを書きましたが、機能していません。ここで、DatabaseDemoとLoginは2つのクラスです。戻るボタンを押すと、ユーザー名とパスワードを含むログインクラスが表示されます。

public class DatabaseDemo extends TabActivity {
    DatabaseHelper dbHelper;
    GridView grid;
    TextView txtTest;
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        SetupTabs();
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu)
    {
        menu.add(1, 1, 1, "Add Employee");
        return true;
    }
    public boolean onOptionsItemSelected(MenuItem item)
    {
        switch (item.getItemId())
        {
        //Add employee
        case 1:
            Intent addIntent=new Intent(this,AddEmployee.class);
            startActivity(addIntent);
            break;
        }
        super.onOptionsItemSelected(item);
        return false;
    }
    void SetupTabs()
    {
        TabHost host=getTabHost();
        TabHost.TabSpec spec=host.newTabSpec("tag1");
        Intent in1=new Intent(this, AddEmployee.class);
        spec.setIndicator("Add Employee");
        spec.setContent(in1);

        TabHost.TabSpec spec2=host.newTabSpec("tag2");
        Intent in2=new Intent(this, GridList.class);

        spec2.setIndicator("Employees");
        spec2.setContent(in2);

        host.addTab(spec);
        host.addTab(spec2);
    }
    @Override
    public void onBackPressed() 
    {
        Intent i = new Intent(DatabaseDemo.this, Login.class);
        startActivity(i);
    }
}
4

1 に答える 1

0

押した状態でログインを開始する必要があるため、クラッシュした場合は、ここではなく、ログインアクティビティに問題がある可能性があります。

于 2012-04-19T18:42:58.473 に答える