跨标签视图

时间:2016-10-05 22:22:18

标签: android android-viewpager imageview

我有一个标签式视图活动,它让我滚动浏览7个标签(只是android studio自动生成的标签视图,没有任何花哨但包括完整性)

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
    setContentView(R.layout.activity_main);

    mSectionsPagerAdapter = new SectionsPagerAdapter(getSupportFragmentManager());

    mSectionsPagerAdapter.addFragment(new Fragment1());
    mSectionsPagerAdapter.addFragment(new Fragment2());
    mSectionsPagerAdapter.addFragment(new Fragment3());
    mSectionsPagerAdapter.addFragment(new Fragment4());
    mSectionsPagerAdapter.addFragment(new Fragment5());
    mSectionsPagerAdapter.addFragment(new Fragment6());
    mSectionsPagerAdapter.addFragment(new Fragment7());

    mViewPager = (ViewPager) findViewById(R.id.container);
    mViewPager.setAdapter(mSectionsPagerAdapter);

    mViewPager.setCurrentItem(0);

}

是否可以在选项卡底部放置一个图像视图,并在标签之间左右滑动时保留在原位?即imageview保持原位,好像它漂浮在标签中的片段上方,其余内容移动

1 个答案:

答案 0 :(得分:0)

答案结果很简单,但无论如何我都会在这里张贴,希望能帮到某人

要让图像保持在标签的底部保持持久(不移动),只需将图像放在选项卡式活动的布局中,它就会被绘制在所有标签上。