+ /* while the documentation recommends to include "@android:layout/list_content" to retain
+ * the default functionality, this does not actually work with the ListFragment provided by
+ * the support library as it builds the view manually and uses different IDs */
+ View layout = inflater.inflate(R.layout.remediation_instruction, container, false);
+ FrameLayout list = (FrameLayout)layout.findViewById(R.id.list_container);
+ list.addView(super.onCreateView(inflater, list, savedInstanceState));
+ return layout;