Searched refs:inflater (Results 1 - 25 of 99) sorted by relevance

1234

/development/samples/ApiDemos/src/com/example/android/apis/app/
H A DFragmentHideShow.java73 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
75 View v = inflater.inflate(R.layout.labeled_text_edit, container, false);
99 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
101 View v = inflater.inflate(R.layout.labeled_text_edit, container, false);
H A DFragmentArgumentsFragment.java47 @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
49 View v = inflater.inflate(R.layout.fragment_arguments_fragment, container, false);
H A DActionBarUsage.java50 MenuInflater inflater = getMenuInflater();
51 inflater.inflate(R.menu.actions, menu);
H A DFragmentContextMenu.java51 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
53 View root = inflater.inflate(R.layout.fragment_context_menu, container, false);
H A DFragmentDialogOrActivity.java73 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
75 View v = inflater.inflate(R.layout.hello_world, container, false);
H A DFragmentMenuFragment.java48 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
50 View v = inflater.inflate(R.layout.fragment_menu, container, false);
H A DFragmentStackFragment.java48 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
50 View v = inflater.inflate(R.layout.fragment_stack, container, false);
/development/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DFragmentHideShowSupport.java74 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
76 View v = inflater.inflate(R.layout.labeled_text_edit, container, false);
100 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
102 View v = inflater.inflate(R.layout.labeled_text_edit, container, false);
H A DFragmentContextMenuSupport.java51 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
53 View root = inflater.inflate(R.layout.fragment_context_menu, container, false);
H A DFragmentDialogOrActivitySupport.java72 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
74 View v = inflater.inflate(R.layout.hello_world, container, false);
H A DFragmentMenuFragmentSupport.java49 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
51 View v = inflater.inflate(R.layout.fragment_menu, container, false);
/development/samples/training/AnimationsDemo/src/com/example/android/animationsdemo/
H A DCardFlipActivity.java172 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
174 return inflater.inflate(R.layout.fragment_card_front, container, false);
186 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
188 return inflater.inflate(R.layout.fragment_card_back, container, false);
H A DScreenSlidePageFragment.java65 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
68 ViewGroup rootView = (ViewGroup) inflater
/development/samples/ActionBarCompat/src/com/example/android/actionbarcompat/
H A DActionBarHelperHoneycomb.java58 LayoutInflater inflater = (LayoutInflater)
61 mRefreshIndeterminateProgressView = inflater.inflate(
/development/samples/Support13Demos/src/com/example/android/supportv13/app/
H A DCountingFragment.java59 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
61 View v = inflater.inflate(R.layout.counting, container, false);
H A DFragmentTabsFragment.java31 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
/development/samples/training/basic/FragmentBasics/src/com/example/fragments/
H A DArticleFragment.java30 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
41 return inflater.inflate(R.layout.article_view, container, false);
/development/samples/training/threadsample/src/com/example/android/threadsample/
H A DPhotoFragment.java102 public View onCreateView(LayoutInflater inflater, ViewGroup viewGroup, Bundle bundle) { argument
103 super.onCreateView(inflater, viewGroup, bundle);
109 View localView = inflater.inflate(R.layout.photo, viewGroup, false);
H A DPhotoThumbnailFragment.java124 public View onCreateView(LayoutInflater inflater, ViewGroup viewGroup, Bundle bundle) { argument
127 super.onCreateView(inflater, viewGroup, bundle);
133 View localView = inflater.inflate(R.layout.gridlist, viewGroup, false);
408 // Gets a new layout inflater instance
409 LayoutInflater inflater = LayoutInflater.from(context);
415 View layoutView = inflater.inflate(R.layout.galleryitem, null);
/development/samples/training/EffectiveNavigation/src/com/example/android/effectivenavigation/
H A DMainActivity.java152 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
154 View rootView = inflater.inflate(R.layout.fragment_section_launchpad, container, false);
195 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
197 View rootView = inflater.inflate(R.layout.fragment_section_dummy, container, false);
/development/samples/training/multiscreen/newsreader/src/com/example/android/newsreader/
H A DArticleFragment.java45 public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { argument
/development/samples/ApiDemos/src/com/example/android/apis/view/
H A DList15.java53 MenuInflater inflater = getMenuInflater();
54 inflater.inflate(R.menu.list_select_menu, menu);
H A DList16.java55 MenuInflater inflater = getMenuInflater();
56 inflater.inflate(R.menu.list_select_menu, menu);
/development/samples/ApiDemos/tests/src/com/example/android/apis/view/
H A DFocus2AndroidTest.java73 final LayoutInflater inflater = LayoutInflater.from(context);
74 mRoot = (ViewGroup) inflater.inflate(R.layout.focus_2, null);
/development/samples/training/bitmapfun/src/com/example/android/bitmapfun/ui/
H A DImageDetailFragment.java73 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
76 final View v = inflater.inflate(R.layout.image_detail_fragment, container, false);

Completed in 2712 milliseconds

1234