我正在努力合并标签式ActionBar 和片段。
我正在使用 ActionBarSherlock 来显示三个独立的标签页,而我的问题只与第一个标签页有关。它应该在列表和详细视图的组合中显示项目(称为“优惠券”)。其他两个选项卡显示不同的内容,但在此处不起作用。
我正在做的是以下内容:
不幸的是我没有超越:
java.lang.IllegalArgumentException:找不到id 0x7f040027的视图 片段CouponDetailFragment {44f4e310#1 id = 0x7f040027}
我在问题的最后附上了相关的片段。任何帮助都非常感谢。
以下是相关摘录:
public class MyCouponActivity extends SherlockFragmentActivity implements CouponListFragment.Callbacks
列表片段:
<fragment xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:name="foo.bar.CouponListFragment" android:id="@+id/coupon_list" android:layout_width="match_parent" android:layout_height="match_parent" />
片段交换的交易:
@Override
public void onItemSelected(final String id) {
final Bundle arguments = new Bundle();
arguments.putString(CouponDetailFragment.ARG_ITEM_ID, id);
final CouponDetailFragment fragment = new CouponDetailFragment();
fragment.setArguments(arguments);
getSupportFragmentManager().beginTransaction().replace(R.id.coupon_list, fragment).commit();
}
答案 0 :(得分:3)
如果您在XML中定义一个片段,它是固定的,您不能用FragmentTransaction中的另一个片段替换它。
您最好的选择是用某种<fragment />
替换ViewGroup
。不要忘记,你必须使用FragmentTransaction在你的Activity的onCreate(..)
中添加CouponListFragment。