Android SupportActionBar选项卡在Fragment下消失

时间:2013-10-10 14:08:28

标签: android tabs android-actionbar-compat

我正在使用支持包v7将操作栏选项卡添加到我的应用程序。

当标签的片段具有height="fill_parent"的根视图时,片段覆盖我的标签。

当我将Fragment的根视图更改为height="wrap_content"时,我可以看到标签,但我的Fragment样式会受到影响。

我加载Fragments的代码与Android Docs中的相同:

public class PicoTabListener<T extends Fragment> implements TabListener {

    private Fragment mFragment;
    private final Activity mActivity;
    private final String mTag;
    private final Class<T> mClass;

    /** Constructor used each time a new tab is created.
      * @param activity  The host Activity, used to instantiate the fragment
      * @param tag  The identifier tag for the fragment
      * @param clz  The fragment's Class, used to instantiate the fragment
      */
    public PicoTabListener(Activity activity, String tag, Class<T> clz) {
        mActivity = activity;
        mTag = tag;
        mClass = clz;
    }

    /* The following are each of the ActionBar.TabListener callbacks */

    public void onTabSelected(Tab tab, FragmentTransaction ft) {
        // Check if the fragment is already initialized
        if (mFragment == null) {
            // If not, instantiate and add it to the activity
            mFragment = Fragment.instantiate(mActivity, mClass.getName());
            ft.add(android.R.id.content, mFragment, mTag);
        } else {
            // If it exists, simply attach it in order to show it
            ft.attach(mFragment);
        }        
    }

    public void onTabUnselected(Tab tab, FragmentTransaction ft) {
        if (mFragment != null) {
            // Detach the fragment, because another one is being attached
            ft.detach(mFragment);
        }
    }

    @Override
    public void onTabReselected(Tab arg0, FragmentTransaction arg1) {
        // do nothing       
    }

不是标签应该始终位于屏幕顶部作为第一层吗?

1 个答案:

答案 0 :(得分:1)

  

不是标签应该始终位于屏幕顶部作为第一层吗?

没有

如果您使用的是ActionBarSherlock,我认为您正在做的事情会起作用。如果您使用本机操作栏实现,我认为您正在做的事情会起作用。但是,您无法使用AppCompat执行此操作:

ft.add(android.R.id.content, mFragment, mTag);

使用布局内部的某个容器(如FrameLayout)作为事务的目标,而不是android.R.id.content。有关详情,请参阅this issue