ActionBar标题不可见

时间:2013-06-05 10:42:40

标签: android android-actionbar

我已经实现了一个操作栏,但它的标题没有显示出来。此外,我的应用程序有两个片段,标题应根据显示的片段进行更改。

public class MainActivity extends FragmentActivity  {
    /** Called when the activity is first created. */

     AppSectionsPagerAdapter mAppSectionsPagerAdapter;

     ViewPager mViewPager;



    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
                WindowManager.LayoutParams.FLAG_FULLSCREEN);

       setupActionBar();

        mAppSectionsPagerAdapter = new AppSectionsPagerAdapter(getSupportFragmentManager());


        // user swipes between sections.
        mViewPager = (ViewPager) findViewById(R.id.pager);
        mViewPager.setAdapter(mAppSectionsPagerAdapter);
        mViewPager.setOnPageChangeListener(new OnPageChangeListener() 
        {
            public void onPageSelected(int position) 
            {
            }

            public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) 
            {

            }

            public void onPageScrollStateChanged(int state) 
            {
                if (state == ViewPager.SCROLL_STATE_DRAGGING)
                {

                }
                if (state == ViewPager.SCROLL_STATE_IDLE)
                {

                }
            }
        });


    }


    public static class AppSectionsPagerAdapter extends FragmentPagerAdapter {



        public AppSectionsPagerAdapter(FragmentManager fm) {
            super(fm);
        }

        @Override
        public Fragment getItem(int i) {
            switch (i) {
                case 0:


                    return new AllPatient();

               case 1:

                    //Intent intent = new Intent(MainActivity.this,abc.class);
                     return new LaunchpadSectionFragment();



            }
            return null;
        }

        @Override
        public int getCount() {
            return 2;

        }



    }




    private void setupActionBar() {
        ActionBar actionBar = getActionBar();
        //actionBar.setDisplayShowHomeEnabled(false);


       actionBar.setBackgroundDrawable(new ColorDrawable(Color.WHITE));

       actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM,
                ActionBar.DISPLAY_SHOW_CUSTOM);
       ViewGroup v = (ViewGroup)LayoutInflater.from(this)
               .inflate(R.layout.header, null);
        actionBar.setCustomView(v,
                new ActionBar.LayoutParams(ActionBar.LayoutParams.MATCH_PARENT,
                        ActionBar.LayoutParams.WRAP_CONTENT,
                        Gravity.CENTER_VERTICAL | Gravity.RIGHT));
        actionBar.setDisplayShowTitleEnabled(true);
        actionBar.setTitle(getTitle());

    } 


}

还请告诉我如何在操作栏中的图标之间添加分隔线。 提前谢谢。

4 个答案:

答案 0 :(得分:2)

尝试更改此行:

actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM, ActionBar.DISPLAY_SHOW_CUSTOM);

通过这个:

actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_HOME, ActionBar.DISPLAY_SHOW_CUSTOM);

答案 1 :(得分:1)

我认为问题在于您要添加宽度为MATCH_PARENT的自定义视图,Android会删除操作栏标题(但不会删除主页图标)。它不是很合乎逻辑,但这是我在我的应用中看到的行为。将宽度设置为WRAP_CONTENT会产生同样的问题。解决方案是为自定义视图提供固定宽度,或者如果您需要从一个活动到另一个活动的宽度变化,请以编程方式计算宽度并将其设置为每个活动的新固定宽度。

答案 2 :(得分:1)

像这样添加节目标题标志

actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_TITLE | ActionBar.DISPLAY_SHOW_CUSTOM, ActionBar.DISPLAY_SHOW_CUSTOM);

答案 3 :(得分:0)

这绝对有效

getSupportActionBar().setDisplayShowTitleEnabled(true);

getSupportActionBar().setTitle(title);