【问题标题】:How to show different layouts in each Tab in a TabLayout using Fragments如何使用 Fragments 在 TabLayout 中的每个选项卡中显示不同的布局
【发布时间】:2014-11-25 19:37:14
【问题描述】:

我一直在尝试使用 PagerTabStrip 在可滑动的 TabLayout 的不同选项卡中显示不同的布局。有人可以帮忙吗?

我想在第一个选项卡中显示一个布局,在第二个选项卡中显示第二个不同的布局等。

 public class MainActivity extends FragmentActivity {


// create object of FragmentPagerAdapter
SectionsPagerAdapter mSectionsPagerAdapter;

// viewpager to display pages
ViewPager mViewPager;

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

    // Create the adapter that will return a fragment for each of the five
    // primary sections of the app.
    mSectionsPagerAdapter = new SectionsPagerAdapter(
            getSupportFragmentManager());

    // Set up the ViewPager with the sections adapter.
    mViewPager = (ViewPager) findViewById(R.id.pager);
    mViewPager.setAdapter(mSectionsPagerAdapter);

}

/**
 * A FragmentPagerAdapter that returns a fragment corresponding to one of
 * the sections/tabs/pages.
 */
public class SectionsPagerAdapter extends FragmentPagerAdapter {

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

    @SuppressLint("NewApi")
    @Override
    public Fragment getItem(int position) {

        switch (position) {
        case 0: {
            //Show 1st Layout(Here I need HELP)

             //HELP HELP HELP

        }case 1:
        {
            //Show 2nd Layout(Here I need HELP)

             //HELP HELP HELP
        } 
        default:
        }
        Fragment fragment = new DummySectionFragment();
        Bundle args = new Bundle();
        args.putInt(DummySectionFragment.ARG_SECTION_NUMBER, position + 1);
        fragment.setArguments(args);
        return fragment;
    }

    @Override
    public int getCount() {
        // Show 5 total pages.
        return 6;
    }

    @Override
    public CharSequence getPageTitle(int position) {
        switch (position) {
        case 0:
            return "Section 1";
        case 1:
            return "Section 2";
        case 2:
            return "Section 3";
        case 3:
            return "Section 4";
        case 4:
            return "Section 5";
        case 5:
            return "Section 6";
        }
        return null;
    }
}

/**
 * A dummy fragment representing a section of the app, but that simply
 * displays dummy text.
 */
public static class DummySectionFragment extends Fragment {
    /**
     * The fragment argument representing the section number for this
     * fragment.
     */
    public static final String ARG_SECTION_NUMBER = "section_number";

    public DummySectionFragment() {
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        // Create a new TextView and set its text to the fragment's section
        // number argument value.
        TextView textView = new TextView(getActivity());
        textView.setGravity(Gravity.CENTER);
        textView.setTextSize(25);
        textView.setText(Integer.toString(getArguments().getInt(
                ARG_SECTION_NUMBER)));
        return textView;
    }
   }

 }

【问题讨论】:

  • 只要改变你的片段是什么。在 onCreateView 中执行View view = inflater.inflate(R.layout.whatever_layout_you_want, container, false); 之类的操作,对该视图执行任何您需要的操作,例如设置 TextViews、将侦听器添加到 Button 等,然后返回膨胀的 view,而不是返回 textView。您可以将片段的参数设置为实例化时选项卡的位置,并使用开关中参数中的该位置来确定要膨胀的布局。
  • 非常感谢,它成功了。 :)
  • 很高兴它成功了。快乐编码:)

标签: android android-fragments tabs android-viewpager android-tabs


【解决方案1】:
 View rootView;
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {

        switch (getArguments().getInt(ARG_SECTION_NUMBER))
        {
            case 1: {
                rootView = inflater.inflate(R.layout.fragment_bba, container, false);
                break;
            }
            case 2: {
                rootView = inflater.inflate(R.layout.fragment_bcom, container, false);
                break;
            }

            case 3: {
                rootView = inflater.inflate(R.layout.fragment_bca, container, false);
                break;
            }

        }
        return rootView;

【讨论】:

    【解决方案2】:

    对于想要使用设计模式来解决这个问题的人来说很好。
    找到完整的工作解决方案Here

    如果你根据 if-else 条件编写片段可能会解决问题

    switch(fragmentId)
        {
        case 1:
        {
          fragment 1 related stuff
        }
        case 2:
        {
        fragment 2 related stuff
        }
        .......
        .......
        and so on
    

    但是这种方法的问题是,如果将来,

    1) 你决定添加更多片段

    2) 您决定更改现有片段的某些功能

    然后您将不得不修改现有代码(在 if-else 条件内)
    不是首选的编程实践

    相反,您可以采用这种方法

    public abstract class BasicFragment extends Fragment {
    
    public BasicFragment newInstance()
    {
        Log.d("Rohit", "new Instance");
        Bundle args = new Bundle();
       // args.putInt(ARG_PAGE, page);
        BasicFragment fragment = provideYourFragment();
        fragment.setArguments(args);
        return fragment;
    
    }
    
    public void onCreate(Bundle savedInstanceState)
    {
        super.onCreate(savedInstanceState);
    }
    
    public View onCreateView(LayoutInflater inflater,ViewGroup parent, Bundle savedInstanseState)
    {
        View view = provideYourFragmentView(inflater,parent,savedInstanseState);
        return view;
    }
    
    public abstract BasicFragment provideYourFragment();
    
    public abstract View provideYourFragmentView(LayoutInflater inflater,ViewGroup parent, Bundle savedInstanceState);
    }
    

    你的 Fragment 实现

    public class ImageFragment extends BasicFragment{
    @Override
    public BasicFragment provideYourFragment() {
    
        return new ImageFragment();
    }
    
    @Override
    public View provideYourFragmentView(LayoutInflater inflater, ViewGroup parent, Bundle savedInstanceState) {
    
        View view = inflater.inflate(R.layout.image_fragment,parent,false);
    
        //Get your parent layout of fragment
        RelativeLayout layout = (RelativeLayout)view;
    
        //Now specific components here
    
        ImageView imageView = (ImageView)layout.findViewById(R.id.myImage);
        imageView.setImageResource(android.R.drawable.ic_media_play);
    
        return view;
    
    }
    }
    

    愉快的编码

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 2017-06-26
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多