繁体   English   中英

Android-将数据从片段传递到活动?

[英]Android - Passing data from fragment to activity?

您能否举一个示例,将列表视图中的项目从片段类传递到活动的列表视图? 感谢有人帮助我,谢谢!

查看Android开发人员培训网站。 它具有您所要求的实现,并且是一个更好的答案:

http://developer.android.com/guide/components/fragments.html

public static class FragmentA extends ListFragment {

    OnArticleSelectedListener mListener;

    @Override
    public void onAttach(Activity activity) {
        super.onAttach(activity);
        try {
            mListener = (OnArticleSelectedListener) activity;
        } catch (ClassCastException e) {
            throw new ClassCastException(activity.toString() + " must implement OnArticleSelectedListener");
        }
    }


    @Override
    public void onListItemClick(ListView l, View v, int position, long id) {
        // Append the clicked item's row ID with the content provider Uri
        Uri noteUri = ContentUris.withAppendedId(ArticleColumns.CONTENT_URI, id);
        // Send the event and Uri to the host activity
        mListener.onArticleSelected(noteUri);
    }

}

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM