Searched defs:view (Results 1 - 25 of 566) sorted by relevance

1234567891011>>

/packages/inputmethods/LatinIME/tools/dicttool/compat/android/view/inputmethod/
H A DEditorInfo.java17 package android.view.inputmethod;
H A DCompletionInfo.java17 package android.view.inputmethod;
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
H A DCellBroadcastCursorAdapter.java22 import android.view.LayoutInflater;
23 import android.view.View;
24 import android.view.ViewGroup;
38 * Makes a new view to hold the data pointed to by cursor.
42 * @param parent The parent to which the new view is attached to
43 * @return the newly created view.
58 * Bind an existing view to the data pointed to by cursor
59 * @param view Existing view, returned earlier by newView
65 public void bindView(View view, Contex argument
[all...]
/packages/apps/Contacts/src/com/android/contacts/util/
H A DSchedulingUtils.java19 import android.view.View;
20 import android.view.ViewTreeObserver.OnDrawListener;
21 import android.view.ViewTreeObserver.OnGlobalLayoutListener;
22 import android.view.ViewTreeObserver.OnPreDrawListener;
29 public static void doAfterLayout(final View view, final Runnable runnable) { argument
34 view.getViewTreeObserver().removeOnGlobalLayoutListener(this);
38 view.getViewTreeObserver().addOnGlobalLayoutListener(listener);
42 public static void doOnPreDraw(final View view, final boolean drawNextFrame, argument
47 view.getViewTreeObserver().removeOnPreDrawListener(this);
52 view
[all...]
/packages/apps/Gallery2/src/com/android/gallery3d/util/
H A DAccessibilityUtils.java20 import android.support.v4.view.accessibility.AccessibilityRecordCompat;
21 import android.view.View;
22 import android.view.accessibility.AccessibilityEvent;
23 import android.view.accessibility.AccessibilityManager;
32 public static void makeAnnouncement(View view, CharSequence announcement) { argument
33 if (view == null)
36 view.announceForAccessibility(announcement);
39 Context ctx = view.getContext();
46 arc.setSource(view);
47 event.setClassName(view
[all...]
/packages/apps/PackageInstaller/src/android/support/wearable/view/
H A DGusterpolator.java17 package android.support.wearable.view;
30 /** An instance of {@link android.support.wearable.view.Gusterpolator}. */
/packages/apps/Settings/src/com/android/settings/
H A DAccessiblePreferenceCategory.java38 public void onBindViewHolder(PreferenceViewHolder view) { argument
39 super.onBindViewHolder(view);
41 view.itemView.setContentDescription(mContentDescription);
H A DMultiLinePreference.java23 import android.view.View;
41 public void onBindViewHolder(PreferenceViewHolder view) { argument
42 super.onBindViewHolder(view);
44 TextView textView = (TextView) view.findViewById(android.R.id.title);
H A DSingleLineSummaryPreference.java34 public void onBindViewHolder(PreferenceViewHolder view) { argument
35 super.onBindViewHolder(view);
37 final TextView summaryView = (TextView) view.findViewById(
/packages/apps/Settings/src/com/android/settings/fuelgauge/
H A DWallOfTextPreference.java33 public void onBindViewHolder(PreferenceViewHolder view) { argument
34 super.onBindViewHolder(view);
35 final TextView summary = (TextView) view.findViewById(android.R.id.summary);
/packages/apps/Settings/src/com/android/settings/utils/
H A DProfileSettingsPreferenceFragment.java24 import android.view.View;
38 public void onViewCreated(View view, Bundle savedInstanceState) { argument
39 super.onViewCreated(view, savedInstanceState);
48 public void onItemSelected(AdapterView<?> parent, View view, int position,
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
H A DAddAccessoryContentFragment.java21 import android.view.View;
36 public void onViewCreated(View view, @Nullable Bundle savedInstanceState) { argument
37 super.onViewCreated(view, savedInstanceState);
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
H A DScrollAdapterBase.java19 import android.view.View;
20 import android.view.ViewGroup;
31 * when a view is removed from ScrollAdapterView, this gives Adapter a chance to do some clean
33 * should not destroy the view hierarchy because the view might be recycled and passed as
36 public abstract void viewRemoved(View view); argument
39 * Creates a scrap view to measure and decide the size of ScrollAdapterView , the difference
H A DScrollAdapterCustomAlign.java19 import android.view.View;
29 public int getItemAlignmentExtraOffset(int adapterIndex, View view); argument
H A DScrollAdapterCustomSize.java19 import android.view.View;
34 * it's width or height, the view itself is responsible doing the scale in
37 int getSelectItemSize(int adapterIndex, View view); argument
H A DScrollAdapterTransform.java19 import android.view.View;
22 * performs transform on a view based on distance from center
27 * performs transform on a view based on distance pixels from center
29 * @param view view that to perform transform
33 * grid view; in case of a single row/column, it will be 0
35 public void transform(View view, int distanceFromCenter, int distanceFromCenter2ndAxis); argument
/packages/screensavers/WebView/src/com/android/dreams/web/
H A DScreensaver.java36 import android.view.MotionEvent;
37 import android.view.View;
38 import android.view.WindowManager;
39 import android.view.animation.AccelerateInterpolator;
40 import android.view.animation.DecelerateInterpolator;
51 public boolean shouldOverrideUrlLoading(WebView view, String url) { argument
/packages/services/Telecomm/src/com/android/server/telecom/
H A DMultiLineTitleEditTextPreference.java22 import android.view.View;
45 * <view class="com.android.server.telecom.Foo$Bar"> as you can with regular views.
65 protected void onBindView(View view) { argument
66 super.onBindView(view);
68 TextView textView = (TextView) view.findViewById(com.android.internal.R.id.title);
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppTransferAdapter.java45 import android.view.View;
54 * The only real work done by this class is to construct a custom view for the
66 public void bindView(View view, Context context, Cursor cursor) { argument
70 ImageView iv = (ImageView)view.findViewById(R.id.transfer_icon);
84 TextView tv = (TextView)view.findViewById(R.id.transfer_title);
93 tv = (TextView)view.findViewById(R.id.targetdevice);
104 tv = (TextView)view.findViewById(R.id.complete_text);
125 tv = (TextView)view.findViewById(R.id.complete_date);
/packages/apps/Calendar/src/com/android/calendar/
H A DEmailAddressAdapter.java24 import android.view.LayoutInflater;
25 import android.view.View;
26 import android.view.ViewGroup;
54 protected void bindView(View view, String directoryType, String directoryName, argument
56 TextView text1 = (TextView)view.findViewById(R.id.text1);
57 TextView text2 = (TextView)view.findViewById(R.id.text2);
63 protected void bindViewLoading(View view, String directoryType, String directoryName) { argument
64 TextView text1 = (TextView)view.findViewById(R.id.text1);
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DViewSelectedFilter.java19 import android.view.View;
20 import android.view.View.AccessibilityDelegate;
21 import android.view.ViewGroup;
22 import android.view.accessibility.AccessibilityEvent;
28 private View mView; //the view we don't want TYPE_VIEW_SELECTED event to fire.
30 private ViewSelectedFilter(View view) { argument
32 mView = view;
36 * AccessibilityEvent can only be suppressed at a view's parent, so this function adds the
37 * delegate to the view's parent.
38 * @param view th
40 suppressViewSelectedEvent(View view) argument
[all...]
/packages/apps/Contacts/src/com/android/contacts/group/
H A DGroupDetailDisplayUtils.java20 import android.view.LayoutInflater;
21 import android.view.View;
41 public static void bindGroupSourceView(Context context, View view, String accountTypeString, argument
46 TextView label = (TextView) view.findViewById(android.R.id.title);
48 throw new IllegalStateException("Group source view must contain a TextView with id"
53 ImageView accountIcon = (ImageView) view.findViewById(android.R.id.icon);
55 throw new IllegalStateException("Group source view must contain an ImageView with id"
/packages/apps/Contacts/src/com/android/contacts/widget/
H A DNotifyingSpinner.java30 void onSetSelection(NotifyingSpinner view, int position); argument
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/
H A DSchedulingUtils.java19 import android.view.View;
20 import android.view.ViewTreeObserver.OnGlobalLayoutListener;
21 import android.view.ViewTreeObserver.OnPreDrawListener;
28 public static void doAfterLayout(final View view, final Runnable runnable) { argument
33 view.getViewTreeObserver().removeOnGlobalLayoutListener(this);
37 view.getViewTreeObserver().addOnGlobalLayoutListener(listener);
41 public static void doOnPreDraw(final View view, final boolean drawNextFrame, argument
46 view.getViewTreeObserver().removeOnPreDrawListener(this);
51 view.getViewTreeObserver().addOnPreDrawListener(listener);
H A DViewUtil.java21 import android.view.View;
22 import android.view.ViewGroup;
23 import android.view.ViewOutlineProvider;
37 * @throws IllegalStateException Thrown if the view's width is unknown before a layout pass
40 public static int getConstantPreLayoutWidth(View view) { argument
42 final ViewGroup.LayoutParams p = view.getLayoutParams();
44 throw new IllegalStateException("Expecting view's width to be a constant rather " +
51 * Returns a boolean indicating whether or not the view's layout direction is RTL
53 * @param view - A valid view
56 isViewLayoutRtl(View view) argument
94 addRectangularOutlineProvider(View view, Resources res) argument
105 setupFloatingActionButton(View view, Resources res) argument
[all...]

Completed in 3607 milliseconds

1234567891011>>