2

こんにちは、アンドロイドが初めてで、助けを求めたいです。私はアンドロイドスタジオで新しいプロジェクトを作成しており、ビューページャーでナビゲーションアクションバータブを使用しています。Android スタジオがこのコードを生成します。1 つのアクティビティ atc での作業は知っていますが、タブを使用したスワイプ レイアウトでの作業を学びたいと考えています。私の質問は次のとおりです。この中にさまざまなアイテムを含むレイアウトを増やすことはできますか? たとえば、今ではすべてのフラグメントに 1 つのテキストビューがあり、スワイプするとすべてのページにテキストが表示されます。しかし、たとえば、テキストビューを使用したページ(タブ1)レイアウト、タブ2ではレイアウト編集テキスト、タブ3では画像を使用したレイアウトが必要です。これはこれで可能ですか?テキストを変更できるため、すべてのタブで同じレイアウトを使用できるようになりました。

public class MainActivity extends ActionBarActivity implements ActionBar.TabListener {

SectionsPagerAdapter mSectionsPagerAdapter;
ViewPager mViewPager;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    final ActionBar actionBar = getSupportActionBar();
    actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
    mSectionsPagerAdapter = new SectionsPagerAdapter(getSupportFragmentManager());
    mViewPager = (ViewPager) findViewById(R.id.pager);
    mViewPager.setAdapter(mSectionsPagerAdapter);

    mViewPager.setOnPageChangeListener(new ViewPager.SimpleOnPageChangeListener() {
        @Override
        public void onPageSelected(int position) {
            actionBar.setSelectedNavigationItem(position);
        }
    });

    for (int i = 0; i < mSectionsPagerAdapter.getCount(); i++) {
        actionBar.addTab(
                actionBar.newTab()
                        .setText(mSectionsPagerAdapter.getPageTitle(i))
                        .setTabListener(this));
    }
}


@Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.main, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    int id = item.getItemId();
    if (id == R.id.action_settings) {
        return true;
    }
    return super.onOptionsItemSelected(item);
}

@Override
public void onTabSelected(ActionBar.Tab tab, FragmentTransaction fragmentTransaction) {
    // When the given tab is selected, switch to the corresponding page in
    // the ViewPager.
    mViewPager.setCurrentItem(tab.getPosition());
}

@Override
public void onTabUnselected(ActionBar.Tab tab, FragmentTransaction fragmentTransaction) {
}

@Override
public void onTabReselected(ActionBar.Tab tab, FragmentTransaction fragmentTransaction) {
}

public class SectionsPagerAdapter extends FragmentPagerAdapter {

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

    @Override
    public Fragment getItem(int position) {
        return PlaceholderFragment.newInstance(position + 1);
    }

    @Override
    public int getCount() {
        return 3;
    }

    @Override
    public CharSequence getPageTitle(int position) {
        Locale l = Locale.getDefault();
        switch (position) {
            case 0:
                return getString(R.string.title_section1).toUpperCase(l);
            case 1:
                return getString(R.string.title_section2).toUpperCase(l);
            case 2:
                return getString(R.string.title_section3).toUpperCase(l);
        }
        return null;
    }
}
public static class PlaceholderFragment extends Fragment {
    private static final String ARG_SECTION_NUMBER = "section_number";
    public static PlaceholderFragment newInstance(int sectionNumber) {
        PlaceholderFragment fragment = new PlaceholderFragment();
        Bundle args = new Bundle();
        args.putInt(ARG_SECTION_NUMBER, sectionNumber);
        fragment.setArguments(args);
        return fragment;
    }

    public PlaceholderFragment() {
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {
        View rootView = inflater.inflate(R.layout.fragment_main, container, false);
        TextView textView = (TextView) rootView.findViewById(R.id.section_label);
        textView.setText(Integer.toString(getArguments().getInt(ARG_SECTION_NUMBER)));
        return rootView;
    }
}

}

4

2 に答える 2

7

この場合、3 つの個別のフラグメント クラスを定義できます。次に、それらを次のように適切に返すことができgetItemますSectionsPagerAdapter

@Override
public Fragment getItem(int position) {
    switch (position) {
        case 0:
            return new YourFragmentClass1();
        case 1:
            return new YourFragmentClass2();
        case 2:
            return new YourFragmentClass3();
    }
} 
于 2013-11-09T19:23:50.787 に答える
1

シモンの答えを詳しく説明します。

ステップ 1内部クラスを削除します。PlaceHolderFragment ステップ 2 : 対応するレイアウトでフラグメント クラスを作成します。たとえば、ImageViewFragment(もちろん Fragment を拡張します) そしてimage_view_fragment_layout. ステップ 3ImageViewFragmentonCreateViewメソッドを inflateにしimage_view_fragment_layoutます。

public ImageViewFragment extends Fragment {
  ...
 public View onCreateView(LayoutInflater inflater, ViewGroup container, 
        Bundle savedInstanceState) {
   View rootView = inflater.inflate(R.layout.image_view_fragment_layout, 
                                                    container, false);
    return rootView;
  }

追加するタブの数だけ、次の手順に従います。

次に、getItem()メソッドでSzymonの答えに従います。最初に表示したいタブは位置 0 などになることを覚えておいてください。

getCount メソッドでもう 1 つ重要なこと:

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

返される数は、追加したタブの数を反映する必要があります。

于 2015-06-10T11:21:13.350 に答える