在ViewPager中,在滑动到第3个选项卡时,tab1中的子片段消失

时间:2013-03-27 09:51:01

标签: android android-layout android-fragments android-viewpager

我在FragmentStatePagerAdapter中有3个标签。 我有一个标签1的片段,它动态地在相对布局中为其'linearlayout'容器添加视图。 我在tab 1片段中动态添加一些视图。我还在该linearLayout容器中添加了一个完整的片段,其中包含其他视图。这很好..一切都很好。

但是当我去第3页然后回来。所有观点都在那里。但那个完整的片段消失了~~ 修改
它从tab1消失,并显示在tab2中的视图下方,其中添加了另一个子片段..

首先,我在tab1和tab2中有一个listFragment。基于listItem单击我在每个选项卡中加载一个片段,tab1和2中的两个片段在xml下面膨胀相同并添加动态视图,但在某些情况下,我在xml中给出的线性布局中添加一个完整的片段而不是视图。 问题当我必须在选项卡1和tab2中的两个新添加的片段中添加两个片段后,只有列表,并滑动到tab3。回来了。 'tab1主片段'中的片段消失,并出现在'tab2主片段'

中的片段下方

这是viewpager,我在其中通过方法setItem(片段,位置)更改不同的片段:

public static class ScreenSlidePagerAdapter extends
        FragmentStatePagerAdapter {

    public static ArrayList<Fragment> tabs_fragments = new ArrayList<Fragment>(
            3);

    public ScreenSlidePagerAdapter(FragmentManager fm,
            ArrayList<Fragment> tabs) {
        super(fm);
        ScreenSlidePagerAdapter.tabs_fragments = tabs;
    }

    @Override
    public Fragment getItem(int arg0) {
        return tabs_fragments.get(arg0);
    }

    @Override
    public int getCount() {
        return tabs_fragments.size();
    }

    @Override
    public int getItemPosition(Object object) {
        if (tabs_fragments.contains(object)) {
            return POSITION_UNCHANGED;
        }
        return POSITION_NONE;
    }

    public static void setItem(Fragment fr, int position) {
        if (position <= 2 && position >= 0) {
            tabs_fragments.remove(position);
            tabs_fragments.add(position, fr);
        } else
            Log.d("adding tab", "wrong tab position to add fragment at");
    }
}

这就是我将片段添加到linearlayout的方式,其中'll'是相对布局中的线性布局,即tab1上片段的实际内容视图

ll.addView(getTitle("Set Message Receive Settings"));
        // View smsRecLayout = inflater.inflate(R.layout.fr_ev_sms_receive,
        // container, false);
        Bundle b = new Bundle();
        b.putInt("id", eventId);
        b.putInt("event", eventTypeId);
        Fragment fr = new FrEv_SMSReceive();
        fr.setArguments(b);
        getFragmentManager().beginTransaction()
                .add(ll.getId(), fr, "fr_sms_receive").commit();

这是片段的布局,其中另一个片段以线性布局'fr_event_container'添加。 FragmentStatePagerAdapter

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".EventDetails" >

<TextView
    android:id="@+id/title"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentTop="true"
    android:gravity="center_horizontal"
    android:padding="10dp"
    android:textIsSelectable="false" />

<ScrollView
    android:id="@+id/fr_event_container_scroll"
    android:layout_width="match_parent"
    android:layout_height="fill_parent"
    android:layout_above="@+id/sep1"
    android:layout_alignParentLeft="true"
    android:layout_below="@+id/title" >

    <LinearLayout
        android:id="@+id/fr_event_container"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >
    </LinearLayout>
</ScrollView>

<View
    android:id="@+id/sep1"
    android:layout_width="fill_parent"
    android:layout_height="2dp"
    android:layout_above="@+id/addOther"
    android:layout_centerHorizontal="true"
    android:layout_margin="10dp"
    android:background="#000"
    android:padding="10dp"
    android:visibility="gone" />

<Button
    android:id="@+id/next"
    style="?android:attr/buttonStyleSmall"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBaseline="@+id/addOther"
    android:layout_alignBottom="@+id/addOther"
    android:layout_alignParentRight="true"
    android:layout_marginRight="54dp"
    android:text="Next"
    android:width="90dp" />

2 个答案:

答案 0 :(得分:11)

ViewPager的最大屏幕外页面限制。 您可以使用setOffscreenPageLimit(int)

将其设置得更高

答案 1 :(得分:0)

我已经知道问题在于两个标签使用相同的布局,而不是setId在运行时更改其ID;

虽然片段在不同的标签中,但是Android正在处理首次添加为main的布局,所以如果我在tab1之后的tab2中添加了一个片段,那么在tab1或tab2版本中添加的任何内容都会在tab1中进行(先补充说。)

我在运行时更改了layoutIds并解决了问题。