3

我有一个描述三种不同运动的枚举:

public enum MatchType {
    S1(0, "Sport1", "xml stream address", R.id.match_list, R.layout.fragment_match_list, R.color.separator_sport1),
    S2(0, "Sport2", "xml stream address", R.id.match_list, R.layout.fragment_match_list, R.color.separator_sport2),
    S3(0, "Sport3", "xml stream address", R.id.match_list, R.layout.fragment_match_list, R.color.separator_sport3);

    ...getters/setters

}

然后我有片段

public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

    matchesArrayAdapter = new MatchListAdapter(getActivity(), new ArrayList<Match>());

    return inflater.inflate(matchType.getLayout(), container, false);
}

同样在我的片段中,我有一个 AsyncTask 我有这个

@Override
protected void onPostExecute(final List<Match> matches) {
    if (matches != null) {
        matchListView = (ListView) getActivity().findViewById(matchType.getRId());

        [setup listeners]

        matchesArrayAdapter.matchArrayList = matches;
        matchListView.setAdapter(matchesArrayAdapter);
    }
}

编辑: 在我的活动中,我有一个 AppSectionsPagerAdapter

public Fragment getItem(int i) {
    MatchListSectionFragment fragment = new MatchListSectionFragment();
    Bundle bundle = new Bundle();
    bundle.putInt(Constants.MATCH_TYPE, i);
    fragment.setArguments(bundle);
    return fragment;
}

编辑 2: 这是我的片段中的 onCreate 和 onCreateView :

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    Bundle bundle = getArguments();
    matchType = MatchType.getMatchType(bundle.getInt(Constants.MATCH_TYPE));
}

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    matchesArrayAdapter = new MatchListAdapter(getActivity(), new ArrayList<Match>());
    return inflater.inflate(matchType.getLayout(), container, false);
}

AsyncTask 为我的枚举中的每个运动读取一个 xml 流,但我的问题是标签 #1 被标签 #2 和随后标签 #3 的数据覆盖。

在我为每项运动定义一个片段之前,但肯定没有必要吗?

如何为每项运动使用具有相同布局的相同片段?

4

3 回答 3

2

在 Activity 中实例化片段时,使用 Bundle 设置片段的参数。

Bundle myBundle = new Bundle();
myBundle.putInt(MY_EXTRA, 1);
myFragment.setArguments(myBundle);

在您的捆绑包中放置一些将在片段的 onCreate() 回调中读取的额外内容。

int i = getArguments().getInt(MY_EXTRA);
于 2013-08-17T15:13:27.833 回答
0

您应该在片段中创建 newInstance 方法,还应该在片段中存储 MatchType 实例。

MatchType matchType;

public static MyFragment newInstance(MatchType matchType) {
          MyFragment fragment = new MyFragment();
          fragment.matchType = matchType;
          return fragment;
}

在您的活动中,您应该使用此方法创建 3 个 MyFragment 实例(与它拥有的每个片段 MatchType 相关)。然后在 onCreateView 方法中,您应该将数据从 matchType 插入到您的视图中。

对不起,我在手机上。对不起我的英语。

更新

检查您的变量matchType。也许它声明为static

于 2013-08-17T16:23:44.940 回答
0

我在手机上。将三个 FrameLayout 放在一个 LinearLayout 中,分别命名为 frame1、frame2 和 frame 3。这将是您的主 Activity 的布局。然后在Activity的oncreate()方法中,调用getFragmentManager().getFragmentTransaction()。实例化三个片段并将数据发送给它们,最好是通过一个Bundle。在 Fragment Transaction 上为每个 Fragment 调用 add() 或 replace() 方法,第一个参数是各自 FrameLayout 的 id,第二个参数是 Fragment 本身。调用 commit()。

于 2013-08-17T15:36:54.497 回答