如何将ListFragment 1中的intent传递给ListFragment 2

时间:2014-08-10 05:11:29

标签: android android-listfragment

我有一个Class1延长ListFragment1 我有一个Class2延长ListFragment2

我目前正在OnItemClickListener内传递这样的意图。

            Intent intent = new Intent(getActivity().getApplicationContext(), ListFragment2.class);
            intent.putExtra("id", "1");
            getActivity().startActivity(intent);

        }

然而,我得到了这个例外:

  

java.lang.ClassCastException:com.abc.xyz.Class2无法强制转换为android.app.Activity

请帮忙! :(

4 个答案:

答案 0 :(得分:1)

意图必须指向一个扩展android.app.Activity的类,而不是你的代码。

您可以在内部扩展ListFragment2并传递值,而不是在外部扩展ListFragment2

希望这有帮助。

答案 1 :(得分:1)

这两个片段必须与活动进行通信以便彼此之间进行通信。活动在片段之间充当媒介。流程将如下所示:

  1. Fragment1使用某些参数将意图传递给Activity1,这有助于Activity1识别它需要将此意图传递给Fragment2。
  2. 关于接收意图的Activity1,将此意图传递给Fragment 2。
  3. 片段如何与活动通信可以按照here

    提到的方式设计

    要允许Fragment与其Activity进行通信,您可以在Fragment类中定义接口并在Activity中实现它。 Fragment在其onAttach()生命周期方法中捕获接口实现,然后可以调用Interface方法以与Activity通信。

    public class HeadlinesFragment扩展ListFragment {     OnHeadlineSelectedListener mCallback;

    // Container Activity must implement this interface
    public interface OnHeadlineSelectedListener {
        public void onArticleSelected(int position);
    }
    
    @Override
    public void onAttach(Activity activity) {
        super.onAttach(activity);
    
        // This makes sure that the container activity has implemented
        // the callback interface. If not, it throws an exception
        try {
            mCallback = (OnHeadlineSelectedListener) activity;
        } catch (ClassCastException e) {
            throw new ClassCastException(activity.toString()
                    + " must implement OnHeadlineSelectedListener");
        }
    }
    
    ...
    

    } 现在,片段可以通过使用OnHeadlineSelectedListener接口的mCallback实例调用onArticleSelected()方法(或接口中的其他方法)来向活动传递消息。

    例如,当用户单击列表项时,将调用片段中的以下方法。该片段使用回调接口将事件传递给父活动。

    @Override
    public void onListItemClick(ListView l, View v, int position, long id) {
        // Send the event to the host activity
        mCallback.onArticleSelected(position);
    }
    

    实施界面 为了从片段接收​​事件回调,托管它的活动必须实现片段类中定义的接口。

    例如,以下活动实现了上例中的接口。

    公共静态类MainActivity扩展了Activity         实现HeadlinesFragment.OnHeadlineSelectedListener {     ...

        public void onArticleSelected(int position) {
            // The user selected the headline of an article from the HeadlinesFragment
            // Do something here to display that article
        }
    }
    

    向片段发送消息 主机活动可以通过使用findFragmentById()捕获Fragment实例,然后直接调用片段的公共方法,将消息传递给片段。

    例如,假设上面显示的活动可能包含另一个片段,该片段用于显示上述回调方法中返回的数据指定的项目。在这种情况下,活动可以将回调方法中收到的信息传递给将显示该项目的另一个片段:

    公共静态类MainActivity扩展了Activity         实现HeadlinesFragment.OnHeadlineSelectedListener {     ...

        public void onArticleSelected(int position) {
            // The user selected the headline of an article from the HeadlinesFragment
            // Do something here to display that article
    
            ArticleFragment articleFrag = (ArticleFragment)
                    getSupportFragmentManager().findFragmentById(R.id.article_fragment);
    
            if (articleFrag != null) {
                // If article frag is available, we're in two-pane layout...
    
                // Call a method in the ArticleFragment to update its content
                articleFrag.updateArticleView(position);
            } else {
                // Otherwise, we're in the one-pane layout and must swap frags...
    
                // Create fragment and give it an argument for the selected article
                ArticleFragment newFragment = new ArticleFragment();
                Bundle args = new Bundle();
                args.putInt(ArticleFragment.ARG_POSITION, position);
                newFragment.setArguments(args);
    
                FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
    
                // Replace whatever is in the fragment_container view with this fragment,
                // and add the transaction to the back stack so the user can navigate back
                transaction.replace(R.id.fragment_container, newFragment);
                transaction.addToBackStack(null);
    
                // Commit the transaction
                transaction.commit();
            }
        }
    }
    

答案 2 :(得分:1)

首先你应该知道:

  • 您正在致电startActivity(intent)而您的Intent指向Fragment
  • 由于Fragment不是App Components,您无法将意图传递给Fragments
  • 片段之间的通信应该在Activity持有它们之间。

最佳解决方案

将您的数据从Class1传递到Activity,然后将其发送到Class2,此链接为您提供了这个,没有更多或更少的代码: http://developer.android.com/training/basics/fragments/communicating.html
当您想要在片段之间进行通信时,必须阅读。

答案 3 :(得分:0)

这是实现它的方法之一,我使用构造函数来传递数据

<强> FragmentOne.java

int myData=12;
FragmentManager manager = getActivity().getSupportFragmentManager();
Fragment frgObj=FragmentTwo.newInstance(myData);
FragmentTransaction ft = manager.beginTransaction();
ft.replace(R.id.container, frgObj,"FragmentTwo");
ft.addToBackStack(null);
ft.commit();

<强> FragmentTwo.java

int myData;
public static FragmentTwo newInstance(int _myData){
FragmentTwo fragment = new FragmentTwo();
myData=_myData
return  fragment;
}

ALSO REFER -- this -- StackOVERFLOW POST