Android: inflating a layout and writting it to PDF produces a blank PDF
when the user selects a share button within an activity, I would like to inflate a layout, populate it, and then write that layout to a pdf using the new printing API. In my fragment I have @TargetApi(Build.VERSION_CODES.KITKAT) public boolean onActionItemClicked(ActionMode mode, MenuItem item) { switch (item.getItemId()) { case R.id.menu_item_share_context: LayoutInflator inflator = getActivity().getSystemService(Context.LAYOUT_INFLATER_SERVICE); View container = inflator.inflate(R.layout.person_share, null, false); TextView name = (TextView)topContainer.findViewById(R.id.person_name); name