为什么RecyclerView失去了对点击的关注?

时间:2016-10-29 13:37:56

标签: android android-recyclerview

我在片段中有一个recyclerview,在项目点击中我添加了另一个显示项目详细信息的片段。但当我返回第一个片段时,点击的项目会失去焦点而无法触发点击。

DetailsFragment detailsFragment = new DetailsFragment();
    Bundle b = detailsFragment.getArguments();
    if (b == null) {
        b = new Bundle();
    }
    b.putString(Constants.ID, id);
    detailsFragment.setArguments(b);
    getFragmentManager().beginTransaction()
            .hide(this)
            .add(R.id.fragment_container, detailsFragment, DetailsFragment.class.getSimpleName())
            .addToBackStack(DetailsFragment.class.getSimpleName())
            .commit();

0 个答案:

没有答案