当前位置: 首页 > 知识库问答 >
问题:

如何确保在ViewPager中的片段更改时调用onCreateView?

葛意远
2023-03-14
protected void onStart() {
    super.onStart();

    mAdapter.startUpdate(mPager);
    mAdapter.setFragment(0, new DummyFragment3());
    mAdapter.notifyDataSetChanged();
    mAdapter.finishUpdate(mPager);

    TextView tv = (TextView) this.findViewById(R.id.placeholder);
    tv.setText("PLACEHOLDER");
}
TextView tv = (TextView) this.findViewById(R.id.placeholder);
tv.setText("PLACEHOLDER");
public class MainActivity extends AppCompatActivity {

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


    mAdapter = new StaticPagerAdapter(getFragmentManager(),2);

    mAdapter.setTitle(0,"EXPENSES");
    mAdapter.setTitle(1,"CONTACTS");
    mAdapter.setFragment(0, new DummyFragment1());
    mAdapter.setFragment(1, new DummyFragment2());

    SlidingTabLayout mTabs = (SlidingTabLayout) findViewById(R.id.tabs);
    mTabs.setDistributeEvenly(true);

    mPager = (ViewPager) findViewById(R.id.pager);
    mPager.setAdapter(mAdapter);
    mTabs.setViewPager(mPager);
}

@Override
protected void onStart() {
    super.onStart();

    mAdapter.startUpdate(mPager);
    mAdapter.setFragment(0, new DummyFragment3());
    mAdapter.notifyDataSetChanged();
    mAdapter.finishUpdate(mPager);

    TextView tv = (TextView) this.findViewById(R.id.placeholder);
    tv.setText("PLACEHOLDER");
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.menu_main, menu);
    return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
    // Handle action bar item clicks here. The action bar will
    // automatically handle clicks on the Home/Up button, so long
    // as you specify a parent activity in AndroidManifest.xml.
    int id = item.getItemId();

    //noinspection SimplifiableIfStatement
    if (id == R.id.action_settings) {
        return true;
    }

    return super.onOptionsItemSelected(item);
}
}

StaticPagerAdapter

import android.app.Fragment;
import android.app.FragmentManager;
import android.support.v13.app.FragmentStatePagerAdapter;


public class StaticPagerAdapter extends FragmentStatePagerAdapter {

    String[] titels;
    Fragment[] fragments;
    public StaticPagerAdapter(FragmentManager fm, int size) {
        super(fm);
        titels = new String[size];
        fragments = new Fragment[size];
    }

    @Override
    public Fragment getItem(int position) {
        if (fragments!=null & position< fragments.length)
            return fragments[position];
        return new Fragment();
    }

    @Override
    public CharSequence getPageTitle(int position) {
        if (titels!=null && position<titels.length)
            return titels[position];
        return "";
    }

    public void setTitle(int position, String title) {
        if (titels!=null && position<titels.length)
            titels[position]=title;
    }

    public void setFragment(int position, Fragment fragment) {
        if (fragments!=null && position<fragments.length)
            fragments[position]=fragment;
        this.notifyDataSetChanged();
    }

    @Override
    public int getCount() {
        return titels.length;
    }

    @Override
    public int getItemPosition(Object object) {
        return POSITION_NONE;
    }
}

dummyfragment1

public class DummyFragment1 extends Fragment{

    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        View view = inflater.inflate(R.layout.fragment_dummy, container, false);
        //return super.onCreateView(inflater, container, savedInstanceState);

        ((TextView)view.findViewById(R.id.text)).setText("Fragment number 1");

        return view;


    }
}

layoutfragment1

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="20dp"/>


</LinearLayout>
public class DummyFragment3 extends Fragment{

    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        View view = inflater.inflate(R.layout.fragment_dummy, container, false);
        //return super.onCreateView(inflater, container, savedInstanceState);

        ((TextView)view.findViewById(R.id.text)).setText("Fragment number 3");

        return view;


    }
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@+id/text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="20dp"/>

    <TextView
        android:id="@+id/placeholder"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/text"
        android:textSize="20dp"
        />


</LinearLayout>
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);


    mAdapter = new StaticPagerAdapter(getFragmentManager(),2);

    Log.d("msg","1");
    mAdapter.setTitle(0,"EXPENSES");
    mAdapter.setTitle(1,"CONTACTS");
    mAdapter.setFragment(0, new DummyFragment1());
    mAdapter.setFragment(1, new DummyFragment2());

    SlidingTabLayout mTabs = (SlidingTabLayout) findViewById(R.id.tabs);
    mTabs.setDistributeEvenly(true);

    mPager = (ViewPager) findViewById(R.id.pager);
    mPager.setAdapter(mAdapter);
    mTabs.setViewPager(mPager);
}

@Override
protected void onStart() {
    super.onStart();

    Log.d("msg", "2");
    mAdapter.startUpdate(mPager);
    mAdapter.setFragment(0, new DummyFragment3());
    mAdapter.notifyDataSetChanged();
    mAdapter.finishUpdate(mPager);

    Log.d("msg", "4");
    //TextView tv = (TextView) this.findViewById(R.id.placeholder);
    //tv.setText("PLACEHOLDER");
}
public class DummyFragment3 extends Fragment{

@Nullable
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    // Inflate the layout for this fragment
    Log.d("msg", "3");
    View view = inflater.inflate(R.layout.fragment_dummy, container, false);
    ((TextView)view.findViewById(R.id.text)).setText("Fragment number 3");

    return view;


}
}
D/msg: 1
D/msg: 2
D/msg: 4
D/msg: 3    

共有1个答案

劳烨
2023-03-14

您可以通过在日志中放置打印指令来验证进程的执行顺序

log.d(“msg”,“throwable”);

 类似资料:
  • 我有一个显示列表的导航抽屉和一个显示内容的视页。当单击导航抽屉上列表中的特定项目时,将为所有页面生成一个URL,该URL将导致视图分页程序内容的更改。导航抽屉和查看页处于相同的活动中。view pager中的片段具有从服务器检索内容的URL。我怎样才能找到它? 下面是一些代码: 查看页有三页。适配器如下: 这些页面都有一个URL字段,用于从包含数据的服务器中提取json。所以简而言之,问题是当导航

  • 我真正想要的是一个功能,当我在Edittext上单击OK时,文本将在文本视图上写入 以下是错误。E/AndroidRuntime:致命异常:主进程:YouTube.Demo.YouTubeDemo,PID:2736 java.lang.NullPoInterException:尝试在YouTube.Demo.YouTubeDemo.Fragments.calculator_List.Calcula

  • 我有一个有3个选项卡的ViewPager。根据我所看到的情况,当容器活动开始时,前两个片段将处于恢复状态。我还注意到,只有并排的两个片段被恢复,第三个被停止。我遇到的问题是,我从网络加载数据用于第一个片段,并将自定义对象存储在一个ArrayList中,这很正常,但当我导航到第三个片段时,数据会随着第一个片段进入停止状态而丢失。因此,当从第三个片段导航回第一个片段时,ArrayList就会为空(我在

  • 我尝试使用onTabSelected来检测某个片段何时被选中,然后在接口的帮助下从该片段启动一个方法(下面的代码)。 但是,当使用Start方法时,在尝试更新TextView时会激发NullPointerException。start方法的代码是: 在以下行抛出异常: 是的,我已经在网上查过了所有可用的东西,但似乎没有任何东西对我有用。 非常感谢您的帮助!

  • 我正在考虑一个简单的例子,包括以下部分: Main活动:有编辑文本、按钮、viewPager 碎片A:什么都没有 碎片B:有文本视图 所以,在屏幕上,你可以滑动查看每个片段。我希望我的例子有这样一个功能:如果一个人在editText中写了一个文本,然后点击按钮,它就会出现在片段B中。 A使用notifyDatsetChanged()尝试了它,但不起作用。有人能帮忙吗?下面是我的全部代码: 主要活动

  • 我需要将ViewPager放置在一个片段内部,但我有两个片段,片段1是我的菜单,片段2我想用作ViewPagerIndicator。 但一个碎片不能再有另一个碎片...我该怎么做呢?