Home
last modified time | relevance | path

Searched refs:inflate (Results 1 – 25 of 289) sorted by relevance

12345678910>>...12

/development/apps/Development/src/com/android/development/
DPackageSummary.java158 final LayoutInflater inflate = in onCreate() local
175 Button view = (Button)inflate.inflate( in onCreate()
192 Button view = (Button)inflate.inflate( in onCreate()
206 Button view = (Button)inflate.inflate( in onCreate()
219 Button view = (Button)inflate.inflate( in onCreate()
232 Button view = (Button)inflate.inflate( in onCreate()
/development/samples/ApiDemos/src/com/example/android/apis/view/
DList9.java71 LayoutInflater inflate = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE); in onCreate() local
73 mDialogText = (TextView) inflate.inflate(R.layout.list_position, null); in onCreate()
DPopupMenu1.java41 popup.getMenuInflater().inflate(R.menu.popup, popup.getMenu()); in onPopupButtonClick()
/development/ide/xcode/zlib.xcodeproj/
Dproject.pbxproj16 …FE08AA130944F1E40057213F /* inflate.c in Sources */ = {isa = PBXBuildFile; fileRef = FE08AA080944F…
25 …FE08AA2A0944F2710057213F /* inflate.h in Headers */ = {isa = PBXBuildFile; fileRef = FE08AA1F0944F…
67inflate.c */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.c; nam…
76inflate.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; nam…
116 FE08AA080944F1E40057213F /* inflate.c */,
147 FE08AA1F0944F2710057213F /* inflate.h */,
169 FE08AA2A0944F2710057213F /* inflate.h in Headers */,
241 FE08AA130944F1E40057213F /* inflate.c in Sources */,
/development/samples/browseable/DoneBar/src/com.example.android.donebar/
DDoneButtonActivity.java39 final View customActionBarView = inflater.inflate( in onCreate()
66 getMenuInflater().inflate(R.menu.cancel, menu); in onCreateOptionsMenu()
/development/samples/ApiDemos/src/com/example/android/apis/app/
DActionBarSettingsActionProviderActivity.java47 getMenuInflater().inflate(R.menu.action_bar_settings_action_provider, menu); in onCreateOptionsMenu()
89 View view = layoutInflater.inflate(R.layout.action_bar_settings_action_provider, null); in onCreateActionView()
DFragmentHideShow.java75 View v = inflater.inflate(R.layout.labeled_text_edit, container, false); in onCreateView()
101 View v = inflater.inflate(R.layout.labeled_text_edit, container, false); in onCreateView()
/development/samples/Support7Demos/src/com/example/android/supportv7/app/
DActionBarSettingsActionProviderActivity.java42 getMenuInflater().inflate(R.menu.action_bar_settings_action_provider, menu); in onCreateOptionsMenu()
73 View view = layoutInflater.inflate(R.layout.action_bar_settings_action_provider, null); in onCreateActionView()
/development/samples/browseable/AdapterTransition/src/com.example.android.adaptertransition/
DAdapterTransitionFragment.java100 return inflater.inflate(R.layout.fragment_adapter_transition, container, false); in onCreateView()
120 inflater.inflate(R.menu.fragment_adapter_transition, menu); in onCreateOptionsMenu()
185 mAbsListView = (AbsListView) inflater.inflate(R.layout.fragment_meat_list, in inflateAbsList()
189 mAbsListView = (AbsListView) inflater.inflate(R.layout.fragment_meat_grid, in inflateAbsList()
/development/samples/training/AnimationsDemo/src/com/example/android/animationsdemo/
DLayoutChangesActivity.java56 getMenuInflater().inflate(R.menu.activity_layout_changes, menu); in onCreateOptionsMenu()
81 final ViewGroup newView = (ViewGroup) LayoutInflater.from(this).inflate( in addItem()
DCardFlipActivity.java174 return inflater.inflate(R.layout.fragment_card_front, container, false); in onCreateView()
188 return inflater.inflate(R.layout.fragment_card_back, container, false); in onCreateView()
/development/samples/browseable/SlidingTabsBasic/src/com.example.android.slidingtabsbasic/
DSlidingTabsBasicFragment.java58 return inflater.inflate(R.layout.fragment_sample, container, false); in onCreateView()
134 View view = getActivity().getLayoutInflater().inflate(R.layout.pager_item, in instantiateItem()
/development/samples/browseable/ActionBarCompat-ShareActionProvider/src/com.example.android.actionbarcompat.shareactionprovider/
DMainActivity.java78 getMenuInflater().inflate(R.menu.main_menu, menu); in onCreateOptionsMenu()
131 .inflate(R.layout.item_text, container, false);
143 .inflate(R.layout.item_image, container, false);
/development/apps/SettingInjectorSample/src/com/example/android/injector/
DMySettingActivity.java37 View view = getLayoutInflater().inflate(R.layout.my_setting_activity, null); in onCreate()
/development/samples/browseable/Flashlight/Wearable/src/com.example.android.wearable.flashlight/
DMainActivity.java101 return inflater.inflate(R.layout.white_light, container, false); in onCreateView()
112 mView = (PartyLightView) inflater.inflate(R.layout.party_light, container, false); in onCreateView()
/development/samples/browseable/BorderlessButtons/src/com.example.android.borderlessbuttons/
DMainActivity.java82 convertView = getLayoutInflater().inflate(R.layout.list_item, container, false);
114 getMenuInflater().inflate(R.menu.main, menu); in onCreateOptionsMenu()
/development/samples/HelloActivity/src/com/example/android/helloactivity/
DHelloActivity.java38 View view = getLayoutInflater().inflate(R.layout.hello_activity, null); in onCreate()
/development/samples/browseable/GridViewPager/Wearable/src/com.example.android.wearable.gridviewpager/
DCustomFragment.java30 return inflater.inflate(R.layout.custom_fragment, container, false); in onCreateView()
/development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
DWiFiDirectServicesList.java33 return inflater.inflate(R.layout.devices_list, container, false); in onCreateView()
70 v = vi.inflate(android.R.layout.simple_list_item_2, null); in getView()
DWiFiChatFragment.java34 view = inflater.inflate(R.layout.fragment_chat, container, false); in onCreateView()
88 v = vi.inflate(android.R.layout.simple_list_item_1, null); in getView()
/development/samples/devbytes/animation/SlidingFragments/src/com/example/android/slidingfragments/
DImageFragment.java31 View view = inflater.inflate(R.layout.image_fragment, container, false); in onCreateView()
/development/samples/Support4Demos/src/com/example/android/supportv4/app/
DFragmentHideShowSupport.java76 View v = inflater.inflate(R.layout.labeled_text_edit, container, false); in onCreateView()
102 View v = inflater.inflate(R.layout.labeled_text_edit, container, false); in onCreateView()
/development/ndk/platforms/android-3/arch-arm/symbols/
Dlibz.so.functions.txt46 inflate
/development/ndk/platforms/android-9/arch-x86/symbols/
Dlibz.so.functions.txt51 inflate
/development/ndk/platforms/android-9/arch-mips/symbols/
Dlibz.so.functions.txt51 inflate

12345678910>>...12