Searched defs:container (Results 1 - 25 of 59) sorted by relevance

123

/development/ndk/platforms/android-3/include/linux/
H A Dtransport_class.h34 struct attribute_container container; member in struct:anon_transport_class
37 #define DECLARE_ANON_TRANSPORT_CLASS(cls, mtch, cfg) struct anon_transport_class cls = { .tclass = { .configure = cfg, }, . container = { .match = mtch, }, }
/development/samples/ApiDemos/src/com/example/android/apis/animation/
H A DLayoutAnimationsHideShow.java41 * as items are hidden or shown in a container.
46 ViewGroup container = null; field in class:LayoutAnimationsHideShow
57 container = new LinearLayout(this);
58 container.setLayoutParams(new LinearLayout.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,
61 // Add a slew of buttons to the container. We won't add any more buttons at runtime, but
66 container.addView(newButton);
77 parent.addView(container);
82 for (int i = 0; i < container.getChildCount(); ++i) {
83 View view = (View) container.getChildAt(i);
109 container
[all...]
/development/samples/ApiDemos/src/com/example/android/apis/app/
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 DFragmentDialogOrActivity.java73 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
75 View v = inflater.inflate(R.layout.hello_world, 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);
H A DFragmentArguments.java98 @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
100 View v = inflater.inflate(R.layout.hello_world, container, false);
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 DFragmentCustomAnimations.java121 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
123 View v = inflater.inflate(R.layout.hello_world, container, false);
H A DFragmentDialog.java148 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
150 View v = inflater.inflate(R.layout.fragment_dialog, container, false);
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 DFragmentMenuFragment.java48 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
50 View v = inflater.inflate(R.layout.fragment_menu, container, false);
H A DFragmentStack.java120 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
122 View v = inflater.inflate(R.layout.hello_world, container, false);
/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/Support4Demos/src/com/example/android/supportv4/app/
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 DFragmentStackFragmentSupport.java49 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
51 View v = inflater.inflate(R.layout.fragment_stack, container, false);
H A DFragmentTabsFragmentSupport.java32 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
H A DFragmentArgumentsSupport.java103 @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
105 View v = inflater.inflate(R.layout.hello_world, 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 DFragmentCustomAnimationSupport.java118 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
120 View v = inflater.inflate(R.layout.hello_world, container, false);
H A DFragmentDialogSupport.java148 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
150 View v = inflater.inflate(R.layout.fragment_dialog, container, false);
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);
/development/samples/training/AnimationsDemo/src/com/example/android/animationsdemo/
H A DScreenSlidePageFragment.java65 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
69 .inflate(R.layout.fragment_screen_slide_page, container, false);
/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/multiscreen/newsreader/src/com/example/android/newsreader/
H A DArticleFragment.java45 public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { argument

Completed in 309 milliseconds

123