7

我正在使用 ActionBarSherlock,我无法去从活动中扩展 SherlockFragment 的课程

我需要从 Activity 移动到片段类

这是我的活动课

Intent notificationIntent = new Intent(context,MessagesFragment.class);

Fragment 类就像

public class MessagesFragment extends SherlockFragment implements
    OnItemClickListener {

// Layout parameters declaration
private PullToRefreshListView lv_messages;
private ImageView iv_no_data;
private LinearLayout ll_bg;

public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {
    getSherlockActivity().getSupportActionBar().setDisplayOptions(
            ActionBar.DISPLAY_SHOW_CUSTOM);
    getSherlockActivity().getSupportActionBar().setDisplayHomeAsUpEnabled(
            true);
    getSherlockActivity().getSupportActionBar().setHomeButtonEnabled(true);
    getSherlockActivity().getSupportActionBar().setDisplayShowHomeEnabled(
            true);
    getSherlockActivity().getSupportActionBar().setCustomView(
            R.layout.header);
    getSherlockActivity().getSupportActionBar().setBackgroundDrawable(
            new ColorDrawable(Color.parseColor("#009fe3")));
    TextView txt = (TextView) getActivity().findViewById(
            R.id.tv_title_header);
    Typeface font = Typeface.createFromAsset(getActivity().getAssets(),
            "georgia.ttf");
    txt.setText("MESSAGES");
    txt.setTypeface(font);
    return inflater.inflate(R.layout.listview_refreshable, null);
}

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setHasOptionsMenu(true);
}
.
.
.
.
}

如果我使用switchfragment方法,它会显示很多错误FragmentChangeActivity

private void switchFragment(Fragment fragment) {
    if (getActivity() == null)
        return;

    if (getActivity() instanceof FragmentChangeActivity) {
        FragmentChangeActivity fca = (FragmentChangeActivity) getActivity();
        fca.switchContent(fragment);

    }
}
4

4 回答 4

15

您需要创建一个扩展 FragmentActivity 的类并在那里启动您的片段

public class MessagesFragmentActivity extends SherlockFragmentActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        if (savedInstanceState == null){
            getSupportFragmentManager().beginTransaction()
                    .add(android.R.id.content, new MessagesFragment ()).commit();}
    }
}

您的片段构造函数。

public YourFragment() {
}

然后从你调用活动,以正常方式开始你的片段活动

Intent i = new Intent(YourActivity.this,MessagesFragment.class);
startActivity(i);
于 2013-08-02T09:46:42.207 回答
1

用于FragmentTransaction转到您想要的任何片段。如果您有多个 Fragment,此方法将在它们之间切换。

这里是方向:

public enum FragmentsAvailable {    
HISTORY
 }


public class MyActivity extends FragmentActivity
 ...

 private void changeFragment(Fragment newFragment, FragmentsAvailable newFragmentType, boolean withoutAnimation) {


    FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();


    try {
        getSupportFragmentManager().popBackStackImmediate(newFragmentType.toString(), FragmentManager.POP_BACK_STACK_INCLUSIVE);
    } catch (java.lang.IllegalStateException e) {

    }

    transaction.addToBackStack(newFragmentType.toString());
    transaction.replace(R.id.fragmentContainer, newFragment);
    transaction.commitAllowingStateLoss();
    getSupportFragmentManager().executePendingTransactions();


}
于 2013-08-02T07:53:06.783 回答
0

一个片段被附加到一个活动,你可以添加一个片段或用 FragmentTransition 替换一个片段。请注意,片段需要一个活动才能存在!

您不会从一个活动转到另一个片段......但是如果您在一个包含片段的活动中,您可以在第一个活动之上打开一个新活动。

于 2013-08-02T09:05:21.377 回答
0

你不能这样做。因为每个 Fragment 都包含在一个 Activity 中,所以您可以直接跳转到包含该 Fragment 的 Activity。

于 2013-08-02T07:43:55.703 回答