Searched defs:parent (Results 1 - 25 of 548) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/widget/
H A DSpinnerAdapter.java39 * @param parent the parent that this view will eventually be attached to
43 public View getDropDownView(int position, View convertView, ViewGroup parent); argument
/frameworks/base/tools/aapt2/flatten/
H A DResourceTypeExtensions.h31 android::ResTable_ref parent; member in struct:aapt::ResTable_entry_ext
/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListItemFocusableAboveUnfocusable.java40 protected View createView(int position, ViewGroup parent, int desiredHeight) { argument
43 position, parent.getContext(), getValueAtPosition(position), desiredHeight);
45 return super.createView(position, parent, desiredHeight);
H A DListItemFocusablesFarApart.java40 protected View createView(int position, ViewGroup parent, int desiredHeight) { argument
42 position, parent.getContext(), desiredHeight);
H A DListItemISVAndButton.java42 protected View createView(int position, ViewGroup parent, int desiredHeight) { argument
43 Context context = parent.getContext();
H A DListOfTouchables.java41 protected View createView(int position, ViewGroup parent, int desiredHeight) { argument
H A DListButtonsDiagonalAcrossItems.java50 protected View createView(int position, ViewGroup parent, argument
55 parent.getContext(), desiredHeight, slot);
H A DListHeterogeneous.java40 protected View createView(int position, ViewGroup parent, int desiredHeight) { argument
44 position, parent.getContext(), getValueAtPosition(position), desiredHeight);
47 position, parent.getContext(), getValueAtPosition(position), desiredHeight);
50 position, parent.getContext(), getValueAtPosition(position), desiredHeight);
57 public View convertView(int position, View convertView, ViewGroup parent) { argument
H A DListHorizontalFocusWithinItemWins.java51 protected View createView(int position, ViewGroup parent, argument
53 final Context context = parent.getContext();
H A DListInterleaveFocusables.java43 protected View createView(int position, ViewGroup parent, int desiredHeight) { argument
46 position, parent.getContext(), getValueAtPosition(position), desiredHeight);
48 return super.createView(position, parent, desiredHeight);
H A DListItemFocusablesClose.java50 protected View createView(int position, ViewGroup parent, int desiredHeight) { argument
52 position, parent.getContext(), desiredHeight);
H A DListItemsExpandOnSelection.java41 protected View createView(int position, ViewGroup parent, int desiredHeight) { argument
42 TextView result = new ExpandWhenSelectedView(parent.getContext(), desiredHeight);
55 public View convertView(int position, View convertView, ViewGroup parent) { argument
H A DListManagedCursor.java55 public void onItemClick(AdapterView parent, View view, int position, long id) { argument
H A DListSimple.java45 protected View createView(int position, ViewGroup parent, int desiredHeight) { argument
46 View view = super.createView(position, parent, desiredHeight);
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DFontSizeUtils.java30 public static void updateFontSize(View parent, int viewId, int dimensId) { argument
31 updateFontSize((TextView) parent.findViewById(viewId), dimensId);
/frameworks/support/compat/java/android/support/v4/view/
H A DLayoutInflaterFactory.java37 * @param parent The parent that the created view will be placed
46 View onCreateView(View parent, String name, Context context, AttributeSet attrs); argument
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DInvisibleRowPresenter.java33 protected ViewHolder createRowViewHolder(ViewGroup parent) { argument
34 RelativeLayout root = new RelativeLayout(parent.getContext());
H A DUtil.java30 * Returns true if child == parent or is descendant of the parent.
32 public static boolean isDescendant(ViewGroup parent, View child) { argument
34 if (child == parent) {
/frameworks/support/v17/preference-leanback/src/android/support/v17/preference/
H A DBaseLeanbackPreferenceFragment.java38 public RecyclerView onCreateRecyclerView(LayoutInflater inflater, ViewGroup parent, argument
41 .inflate(R.layout.leanback_preferences_list, parent, false);
/frameworks/base/core/java/android/content/
H A DSyncActivityTooManyDeletes.java109 public void onItemClick(AdapterView<?> parent, View view, int position, long id) { argument
/frameworks/base/core/java/android/hardware/camera2/
H A DTotalCaptureResult.java62 public TotalCaptureResult(CameraMetadataNative results, CaptureRequest parent, argument
64 super(results, parent, extras);
/frameworks/base/core/java/android/view/
H A DViewPropertyAnimatorRT.java48 public boolean startAnimation(ViewPropertyAnimator parent) { argument
49 cancelAnimators(parent.mPendingAnimations);
50 if (!canHandleAnimator(parent)) {
53 doStartAnimation(parent);
66 private void doStartAnimation(ViewPropertyAnimator parent) { argument
67 int size = parent.mPendingAnimations.size();
69 long startDelay = parent.getStartDelay();
70 long duration = parent.getDuration();
71 TimeInterpolator interpolator = parent.getInterpolator();
80 NameValuesHolder holder = parent
97 canHandleAnimator(ViewPropertyAnimator parent) argument
[all...]
/frameworks/base/core/java/com/android/internal/app/
H A DNavItemSelectedListener.java36 public void onItemSelected(AdapterView<?> parent, View view, int position, long id) { argument
43 public void onNothingSelected(AdapterView<?> parent) { argument
/frameworks/base/core/tests/coretests/src/android/widget/focus/
H A DListOfButtons.java63 public View getView(int position, View convertView, ViewGroup parent) { argument
66 Button button = new Button(parent.getContext());
/frameworks/base/core/tests/coretests/src/android/widget/gridview/
H A DGridSimple.java49 protected View createView(int position, ViewGroup parent, int desiredHeight) { argument
50 View view = super.createView(position, parent, desiredHeight);

Completed in 353 milliseconds

1234567891011>>