繁体   English   中英

使用ViewPager或FragmentPagerAdapter查找显示的片段

[英]Finding Displayed Fragment with ViewPager or FragmentPagerAdapter

我有一个主要活动来扩展ActionBarActivity并实现ActionBar.TabListener

public class MainActivity extends ActionBarActivity implements ActionBar.TabListener {
SectionsPagerAdapter mSectionsPagerAdapter;
ViewPager mViewPager;
View mView;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);


    // Set up the action bar.
    final ActionBar actionBar = getSupportActionBar();
    actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);

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

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

    // When swiping between different sections, select the corresponding
    // tab. We can also use ActionBar.Tab#select() to do this if we have
    // a reference to the Tab.
    mViewPager.setOnPageChangeListener(new ViewPager.SimpleOnPageChangeListener() {
        @Override
        public void onPageSelected(int position) {
            actionBar.setSelectedNavigationItem(position);
        }
    });

    // For each of the sections in the app, add a tab to the action bar.
    for (int i = 0; i < mSectionsPagerAdapter.getCount(); i++) {
        // Create a tab with text corresponding to the page title defined by
        // the adapter. Also specify this Activity object, which implements
        // the TabListener interface, as the callback (listener) for when
        // this tab is selected.
        actionBar.addTab(
                actionBar.newTab()
                        .setText(mSectionsPagerAdapter.getPageTitle(i))
                        .setTabListener(this));
    }
  }
}

在MainActivity控制的片段之一上单击按钮时,我必须创建一个意图并开始另一个活动:

public void goToHighScore(View view) {
    Intent intent = new Intent(this, DisplayScoreActivity.class);
    //TextView nView = (TextView) mViewPager.getChildAt(2).findViewById(R.id.label);
    TextView nView = (TextView) findViewById(R.id.label);   
    String highScore = nView.getText().toString();
    intent.putExtra(HIGH_SCORE, highScore);
    startActivity(intent);
}

但是,“ highScore”值始终等于进行片段处理的值吗? 所有的答案表示赞赏。 谢谢您的陪伴。 保罗

您可以通过以下方式获取当前片段:

Fragment currentFragment = mSectionsPagerAdapter.getItem(mViewPager.getCurrentItem());

更新您的片段以获得分数:

Class CustomFragment extends Fragment{
    private TextView nView;
    public void onViewCreated(View view, Bundle savedInstanceState) {
        super.onViewCreated(view, savedInstanceState);
        nView = view.findViewById(R.id.label);
    }

    public String getScore(){
        return nView.getText().toString();
    }
}

函数将如下所示:

public void goToHighScore(View view) {
    Intent intent = new Intent(this, DisplayScoreActivity.class);
    Fragment currentFragment = mSectionsPagerAdapter.getItem(mViewPager.getCurrentItem());
    String highScore = currentFragment.getScore();
    intent.putExtra(HIGH_SCORE, highScore);
    startActivity(intent);
}

但是,我建议您处理片段中的onClick事件以提供更好的封装。 如下更新fragment

Class CustomFragment extends Fragment{
    private TextView nView;

    public void onViewCreated(View view, Bundle savedInstanceState) {
        super.onViewCreated(view, savedInstanceState);
        nView = view.findViewById(R.id.label);
        Button button = (Button)findViewByid(R.id.button)
        button.setOnClickListener(new View.OnClickListener(){
            public void onClick(View v){
                String highScore = nView.getText().toString()
                intent.putExtra(HIGH_SCORE, highScore);
                startActivity(intent);
            }
        });
    }
}

通过这样做,您的Fragment可以附加到不同的activity而不会破坏功能。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM