0

クリックしたときに2番目のタブバーに移動する方法は?常に1番目のタブバーを選択します画面にタブバーを表示するときに2番目のタブバーを選択したい画面で1番目のタブバーを選択します

画像

このように始めるときに2番目のタブバーを選択したい

image2

私のコードは以下です

public class TabBarActivity extends TabActivity {
/** Called when the activity is first created. */

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main2);
        setTabs() ;
    }

    private void setTabs()
    {
        addTab("payments", R.drawable.tab_home, AgAppPaymentScreen.class);
        addTab("My Account", R.drawable.tab_home, AgAppMyAccountScreen.class);

        addTab("Spend Analyzer", R.drawable.tab_home, AgAppPaymentScreen.class);
        addTab("Notification", R.drawable.tab_home, AgAppPaymentScreen.class);
        addTab("Help", R.drawable.tab_home, AgAppPaymentScreen.class);
    }

    private void addTab(String labelId, int drawableId, Class<?> c)
    {
        TabHost tabHost = getTabHost();
        Intent intent = new Intent(this, c);
        TabHost.TabSpec spec = tabHost.newTabSpec("tab" + labelId); 

        View tabIndicator = LayoutInflater.from(this).inflate(
            R.layout.tab_indicator, getTabWidget(), false);
        TextView title = (TextView) tabIndicator.findViewById(R.id.title);
        title.setText(labelId);
        ImageView icon = (ImageView) tabIndicator.findViewById(R.id.icon);
        icon.setImageResource(drawableId);

        spec.setIndicator(tabIndicator);
        spec.setContent(intent);
        tabHost.addTab(spec);
    }
}
4

1 に答える 1

0
tabHost.setCurrentTab(1);

0:最初のタブ。1:2番目のタブ。

于 2013-01-10T12:59:41.320 に答える