5

我在 FragmentStatePagerAdapter 中有 3 个选项卡。我有一个选项卡 1 的片段,它动态地将视图添加到相对布局内的“线性布局”容器中。我在选项卡 1 片段中动态添加了一些视图。我还在该 linearLayout 容器中添加了一个完整的片段,以及上下其他视图。这工作正常.. 一切都很好。

但是当我转到第 3 页并回来时。所有的观点都在那里。但是那个完整的片段消失了~~ 编辑
它从tab1消失并出现在tab2中添加另一个子片段的视图下方。

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

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

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");
    }
}

这就是我将片段添加到线性布局的方式,其中'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" />

4

2 回答 2

11

ViewPager 有一个最大的离屏页面限制。您可以将其设置得更高setOffscreenPageLimit(int)

于 2013-03-27T09:57:49.037 回答
0

我已经知道问题在于对两个选项卡使用相同的布局而不在运行时更改其 ID setId;

尽管片段位于不同的选项卡中,但 Android 将首先添加的布局视为主要布局,因此如果我在 tab1 之后在 tab2 中添加了一个片段,那么在 tab2 或该布局的 tab2 版本中添加的任何内容都将在 tab1 中进行(首先添加) .

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

于 2013-03-28T17:00:19.523 回答