1

我目前正在开发tabbar包含四个选项卡按钮的应用程序。选项卡按钮之一是“信息”选项卡。The information tab shows the information dialog containing detail info regarding to the activity.

Required:信息选项卡的行为是动态的,它对不同的活动显示不同的信息详细信息。

是否可以 ?如何做到这一点?或任何其他解决方案。

另一点:Is it possible to show the tab bar for entire application?

提前致谢

4

1 回答 1

0

看到你的代码会像

TabHost tabHost = getTabHost();
    // Tab for Photos
TabSpec photospec = tabHost.newTabSpec("Photos");
    // setting Title and Icon for the Tab
    photospec.setIndicator("Photos", getResources().getDrawable(R.drawable.icon_photos_tab));
    Intent photosIntent = new Intent(this, PhotosActivity.class);
    photospec.setContent(photosIntent);


    // Adding all TabSpec to TabHost
    tabHost.addTab(photospec); // Adding photos tab
    tabHost.addTab(songspec); // Adding songs tab
    tabHost.addTab(videospec); // Adding videos tab

您需要处理选项卡的事件如下

tabHost.getChildAt(1).setOnTouchListener(new OnTouchListener() {

    @Override
    public boolean onTouch(View v, MotionEvent event) {
        int action = event.getAction();

        if(action == MotionEvent.ACTION_UP)
        {
            //Something to do

            return true; // do this if you dont want the tab to change
        }
        return false;
    }
});
于 2013-07-02T06:38:48.670 回答