Home
last modified time | relevance | path

Searched refs:inflater (Results 1 – 25 of 237) sorted by relevance

12345678910

/development/samples/browseable/AutoBackupForApps/src/com.example.android.autobackupsample/
DMainActivityFragment.java56 public View onCreateView(LayoutInflater inflater, ViewGroup container, in onCreateView() argument
59 return inflater.inflate(R.layout.fragment_main, container, false); in onCreateView()
72 public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) { in onCreateOptionsMenu() argument
74 inflater.inflate(R.menu.menu_main, menu); in onCreateOptionsMenu()
75 super.onCreateOptionsMenu(menu, inflater); in onCreateOptionsMenu()
107 LayoutInflater inflater = LayoutInflater.from(getContext()); in onResume()
108 View itemView = inflater.inflate(R.layout.file_list_item, parent, false); in onResume()
/development/samples/IntentPlayground/src/com/example/android/intentplayground/
DLaunchFragment.java44 public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, in onCreateView() argument
69 public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) { in onCreateOptionsMenu() argument
70 inflater.inflate(R.menu.launch_menu, menu); in onCreateOptionsMenu()
72 super.onCreateOptionsMenu(menu, inflater); in onCreateOptionsMenu()
/development/samples/browseable/GridViewPager/src/com.example.android.wearable.gridviewpager/
DCustomFragment.java28 public View onCreateView(LayoutInflater inflater, ViewGroup container, in onCreateView() argument
30 return inflater.inflate(R.layout.custom_fragment, container, false); in onCreateView()
/development/samples/browseable/Flashlight/src/com.example.android.wearable.flashlight/
DMainActivity.java99 public View onCreateView(LayoutInflater inflater, ViewGroup container, in onCreateView() argument
101 return inflater.inflate(R.layout.white_light, container, false); in onCreateView()
110 public View onCreateView(LayoutInflater inflater, ViewGroup container, in onCreateView() argument
112 mView = (PartyLightView) inflater.inflate(R.layout.party_light, container, false); in onCreateView()
/development/samples/browseable/DeviceOwner/src/com.example.android.deviceowner/
DInstructionFragment.java40 public View onCreateView(LayoutInflater inflater, ViewGroup container, in onCreateView() argument
42 return inflater.inflate(R.layout.fragment_instruction, container, false); in onCreateView()
/development/samples/browseable/DataLayer/Wearable/src/com.example.android.wearable.datalayer/fragments/
DDiscoveryFragment.java35 public View onCreateView(LayoutInflater inflater, ViewGroup container, in onCreateView() argument
37 return inflater.inflate(R.layout.discovery_fragment, container, false); in onCreateView()
DDataFragment.java43 public View onCreateView(LayoutInflater inflater, ViewGroup container, in onCreateView() argument
45 View view = inflater.inflate(R.layout.data_fragment, container, false); in onCreateView()
77 LayoutInflater inflater = (LayoutInflater) mContext.getSystemService( in getView() local
79 convertView = inflater.inflate(android.R.layout.two_line_list_item, null); in getView()
DAssetFragment.java39 public View onCreateView(LayoutInflater inflater, ViewGroup container, in onCreateView() argument
41 View view = inflater.inflate(R.layout.asset_fragment, container, false); in onCreateView()
/development/samples/devbytes/animation/SlidingFragments/src/com/example/android/slidingfragments/
DImageFragment.java29 public View onCreateView(LayoutInflater inflater, ViewGroup container, in onCreateView() argument
31 View view = inflater.inflate(R.layout.image_fragment, container, false); in onCreateView()
DTextFragment.java33 public View onCreateView(LayoutInflater inflater, ViewGroup container, in onCreateView() argument
35 View view = inflater.inflate(R.layout.text_fragment, container, false); in onCreateView()
/development/samples/training/AnimationsDemo/src/com/example/android/animationsdemo/
DCardFlipActivity.java172 public View onCreateView(LayoutInflater inflater, ViewGroup container, in onCreateView() argument
174 return inflater.inflate(R.layout.fragment_card_front, container, false); in onCreateView()
186 public View onCreateView(LayoutInflater inflater, ViewGroup container, in onCreateView() argument
188 return inflater.inflate(R.layout.fragment_card_back, container, false); in onCreateView()
DScreenSlidePageFragment.java65 public View onCreateView(LayoutInflater inflater, ViewGroup container, in onCreateView() argument
68 ViewGroup rootView = (ViewGroup) inflater in onCreateView()
/development/samples/browseable/RuntimePermissions/src/com.example.android.system.runtimepermissions/
DRuntimePermissionsFragment.java31 public View onCreateView(LayoutInflater inflater, ViewGroup container, in onCreateView() argument
33 View root = inflater.inflate(R.layout.fragment_main, null); in onCreateView()
/development/samples/browseable/JumpingJack/src/com.example.android.wearable.jumpingjack/fragments/
DSettingsFragment.java35 public View onCreateView(LayoutInflater inflater, ViewGroup container, in onCreateView() argument
37 View view = inflater.inflate(R.layout.setting_layout, container, false); in onCreateView()
/development/samples/browseable/RuntimePermissions/src/com.example.android.system.runtimepermissions/camera/
DCameraPreviewFragment.java59 public View onCreateView(LayoutInflater inflater, ViewGroup container, in onCreateView() argument
75 return inflater.inflate(R.layout.fragment_camera_unavailable, null); in onCreateView()
78 View root = inflater.inflate(R.layout.fragment_camera, null); in onCreateView()
/development/samples/ApiDemos/src/com/example/android/apis/app/
DFragmentHideShow.java79 public View onCreateView(LayoutInflater inflater, ViewGroup container, in onCreateView() argument
81 View v = inflater.inflate(R.layout.labeled_text_edit, container, false); in onCreateView()
105 public View onCreateView(LayoutInflater inflater, ViewGroup container, in onCreateView() argument
107 View v = inflater.inflate(R.layout.labeled_text_edit, container, false); in onCreateView()
DFragmentArgumentsFragment.java47 @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, in onCreateView() argument
49 View v = inflater.inflate(R.layout.fragment_arguments_fragment, container, false); in onCreateView()
/development/samples/browseable/BluetoothAdvertisements/src/com.example.android.bluetoothadvertisements/
DScannerFragment.java92 public View onCreateView(LayoutInflater inflater, ViewGroup container, in onCreateView() argument
95 final View view = super.onCreateView(inflater, container, savedInstanceState); in onCreateView()
117 public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) { in onCreateOptionsMenu() argument
118 super.onCreateOptionsMenu(menu, inflater); in onCreateOptionsMenu()
119 inflater.inflate(R.menu.scanner_menu, menu); in onCreateOptionsMenu()
/development/samples/browseable/SwipeRefreshLayoutBasic/src/com.example.android.swiperefreshlayoutbasic/
DSwipeRefreshLayoutBasicFragment.java80 public View onCreateView(LayoutInflater inflater, ViewGroup container, in onCreateView() argument
82 View view = inflater.inflate(R.layout.fragment_sample, container, false); in onCreateView()
141 public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) { in onCreateOptionsMenu() argument
142 inflater.inflate(R.menu.main_menu, menu); in onCreateOptionsMenu()
/development/samples/training/threadsample/src/com/example/android/threadsample/
DPhotoFragment.java102 public View onCreateView(LayoutInflater inflater, ViewGroup viewGroup, Bundle bundle) { in onCreateView() argument
103 super.onCreateView(inflater, viewGroup, bundle); in onCreateView()
109 View localView = inflater.inflate(R.layout.photo, viewGroup, false); in onCreateView()
/development/samples/browseable/ElevationBasic/src/com.example.android.elevationbasic/
DElevationBasicFragment.java40 LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { in onCreateView() argument
45 View rootView = inflater.inflate(R.layout.elevation_basic, container, false); in onCreateView()
/development/samples/training/basic/FragmentBasics/src/com/example/fragments/
DArticleFragment.java30 public View onCreateView(LayoutInflater inflater, ViewGroup container, in onCreateView() argument
41 return inflater.inflate(R.layout.article_view, container, false); in onCreateView()
/development/samples/browseable/SwipeRefreshMultipleViews/src/com.example.android.swiperefreshmultipleviews/
DSwipeRefreshMultipleViewsFragment.java86 public View onCreateView(LayoutInflater inflater, ViewGroup container, in onCreateView() argument
88 View view = inflater.inflate(R.layout.fragment_sample, container, false); in onCreateView()
153 public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) { in onCreateOptionsMenu() argument
154 inflater.inflate(R.menu.main_menu, menu); in onCreateOptionsMenu()
/development/samples/training/EffectiveNavigation/src/com/example/android/effectivenavigation/
DMainActivity.java152 public View onCreateView(LayoutInflater inflater, ViewGroup container, in onCreateView() argument
154 View rootView = inflater.inflate(R.layout.fragment_section_launchpad, container, false); in onCreateView()
195 public View onCreateView(LayoutInflater inflater, ViewGroup container, in onCreateView() argument
197 View rootView = inflater.inflate(R.layout.fragment_section_dummy, container, false); in onCreateView()
/development/samples/browseable/FloatingActionButtonBasic/src/com.example.android.floatingactionbuttonbasic/
DFloatingActionButtonBasicFragment.java39 public View onCreateView(LayoutInflater inflater, ViewGroup container, in onCreateView() argument
42 View rootView = inflater.inflate(R.layout.fab_layout, container, false); in onCreateView()

12345678910