Searched defs:view (Results 26 - 50 of 323) sorted by relevance

1234567891011>>

/packages/apps/Settings/src/com/android/settings/
H A DIconPreferenceScreen.java24 import android.view.View;
48 public void onBindView(View view) { argument
49 super.onBindView(view);
50 ImageView imageView = (ImageView) view.findViewById(R.id.icon);
54 TextView textView = (TextView) view.findViewById(android.R.id.title);
H A DOwnerInfoSettings.java24 import android.view.LayoutInflater;
25 import android.view.View;
26 import android.view.ViewGroup;
45 private void initView(View view) { argument
H A DProgressCategory.java22 import android.view.View;
39 public void onBindView(View view) { argument
40 super.onBindView(view);
41 final View progressBar = view.findViewById(R.id.scanning_progress);
H A DSelectableEditTextPreference.java24 import android.view.View;
50 protected void onBindDialogView(View view) { argument
51 super.onBindDialogView(view);
H A DBugreportPreference.java26 import android.view.View;
46 protected void onBindDialogView(View view) { argument
47 super.onBindDialogView(view);
H A DEditPinPreference.java24 import android.view.View;
51 protected void onBindDialogView(View view) { argument
52 super.onBindDialogView(view);
/packages/apps/Settings/src/com/android/settings/fuelgauge/
H A DBatteryHistoryPreference.java23 import android.view.View;
49 protected void onBindView(View view) { argument
50 super.onBindView(view);
52 BatteryHistoryChart chart = (BatteryHistoryChart)view.findViewById(
/packages/apps/Settings/src/com/android/settings/wifi/p2p/
H A DWifiP2pPersistentGroup.java22 import android.view.View;
34 protected void onBindView(View view) { argument
36 super.onBindView(view);
/packages/apps/Tag/src/com/android/apps/tag/
H A DTagViewer.java30 import android.view.LayoutInflater;
31 import android.view.View;
32 import android.view.View.OnClickListener;
116 public void onClick(View view) { argument
/packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
H A DItemMoveGestureListener.java19 import android.view.MotionEvent;
20 import android.view.View;
29 * @param view The view
34 public boolean onMoveBegin(View view, MotionEvent e); argument
39 * @param view The view
45 public boolean onMove(View view, MotionEvent e1, MotionEvent e2); argument
50 * @param view The view
52 onMoveEnd(View view) argument
[all...]
H A DItemSimpleGestureListener.java19 import android.view.MotionEvent;
20 import android.view.View;
36 * @param view The view which received the event
42 public boolean onSingleTapConfirmed(View view, int area, MotionEvent e); argument
48 * @param view The view which received the event
52 public void onLongPress(View view, MotionEvent e); argument
H A DScrollViewListener.java19 import android.view.View;
28 * @param view The view
34 public void onScrollBegin(View view, int scrollX, int scrollY, boolean appScroll); argument
39 * @param view The view
45 public void onScrollProgress(View view, int scrollX, int scrollY, boolean appScroll); argument
50 * @param view The view
56 public void onScrollEnd(View view, in argument
[all...]
/packages/experimental/LoaderApp/src/com/android/loaderapp/
H A DCursorFactoryListAdapter.java24 import android.view.LayoutInflater;
25 import android.view.View;
26 import android.view.ViewGroup;
35 public void bindView(View view, Context context, Cursor cursor); argument
39 * A simple view factory that inflates the views from XML and puts the display
55 public void bindView(View view, Context context, Cursor cursor) { argument
56 TextView name = (TextView) view.findViewById(R.id.name);
68 View view = mViewFactory.newView(context, parent);
69 mViewFactory.bindView(view, context, cursor);
70 return view;
74 bindView(View view, Context context, Cursor cursor) argument
[all...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/
H A DViewLayoutUtils.java19 import android.view.View;
20 import android.view.ViewGroup;
21 import android.view.ViewGroup.MarginLayoutParams;
43 public static void placeViewAt(View view, int x, int y, int w, int h) { argument
44 final ViewGroup.LayoutParams lp = view.getLayoutParams();
/packages/apps/Browser/src/com/android/browser/view/
H A DBasePieView.java17 package com.android.browser.view;
21 import android.view.MotionEvent;
22 import android.view.View;
97 View view = mAdapter.getView(i, null, null);
98 view.measure(View.MeasureSpec.UNSPECIFIED,
100 mChildWidth = Math.max(mChildWidth, view.getMeasuredWidth());
101 mChildHeight = Math.max(mChildHeight, view.getMeasuredHeight());
102 mViews.add(view);
123 protected void drawView(View view, Canvas canvas) { argument
125 canvas.translate(view
[all...]
H A DPieListView.java17 package com.android.browser.view;
24 import android.view.View;
61 for (View view : mViews) {
62 view.layout(mLeft, top, mLeft + mChildWidth, top + mChildHeight);
71 for (View view : mViews) {
72 drawView(view, canvas);
/packages/apps/Browser/src/com/android/browser/
H A DBrowserBookmarksAdapter.java24 import android.view.LayoutInflater;
25 import android.view.View;
26 import android.view.ViewGroup;
32 import com.android.browser.view.BookmarkContainer;
62 public void bindView(View view, BrowserBookmarksAdapterItem object) { argument
63 BookmarkContainer container = (BookmarkContainer) view;
65 bindGridView(view, mContext, object);
78 void bindGridView(View view, Context context, BrowserBookmarksAdapterItem item) { argument
83 view.setPadding(padding, view
[all...]
/packages/apps/Browser/src/com/android/browser/preferences/
H A DSeekBarSummaryPreference.java23 import android.view.View;
68 protected void onBindView(View view) { argument
69 super.onBindView(view);
70 mSummaryView = (TextView) view.findViewById(R.id.text);
/packages/apps/CertInstaller/src/com/android/certinstaller/
H A DViewHelper.java19 import android.view.View;
29 void setView(View view) { argument
30 mView = view;
/packages/apps/Contacts/src/com/android/contacts/util/
H A DDialogManager.java24 import android.view.View;
64 * If the view can show several dialogs, it should distinguish them using an item in the Bundle.
68 public void showDialogInView(final View view, final Bundle bundle) { argument
69 final int viewId = view.getId();
97 final View view = mActivity.findViewById(viewId);
98 if (view == null || !(view instanceof DialogShowingView)) {
101 final Dialog dialog = ((DialogShowingView)view).createDialog(bundle);
/packages/apps/Email/src/com/android/email/
H A DEmailAddressAdapter.java25 import android.view.LayoutInflater;
26 import android.view.View;
27 import android.view.ViewGroup;
55 protected void bindView(View view, String directoryType, String directoryName, argument
57 TextView text1 = (TextView)view.findViewById(R.id.text1);
58 TextView text2 = (TextView)view.findViewById(R.id.text2);
64 protected void bindViewLoading(View view, String directoryType, String directoryName) { argument
65 TextView text1 = (TextView)view.findViewById(R.id.text1);
/packages/apps/Email/src/com/android/email/view/
H A DNonLockingScrollView.java18 package com.android.email.view;
23 import android.view.MotionEvent;
24 import android.view.View;
25 import android.view.ViewGroup;
53 * Whether or not the contents of this view is being dragged by one of the children in
98 * Traverses the view tree for {@link WebView}s so they can be excluded from touch
/packages/apps/HTMLViewer/src/com/android/htmlviewer/
H A DHTMLViewerActivity.java24 import android.view.Window;
98 // Check the intent for the content to view
122 // the default implementation requires each view to have an id. As the
125 // warning like this, "couldn't save which view has focus because the
126 // focused view XXX has no id".
147 public void onReceivedTitle(WebView view, String title) { argument
152 public void onProgressChanged(WebView view, int newProgress) { argument
/packages/apps/Mms/src/com/android/mms/ui/
H A DPresenter.java34 public Presenter(Context context, ViewInterface view, Model model) { argument
36 mView = view;
46 public void setView(ViewInterface view) { argument
47 mView = view;
/packages/apps/Phone/tests/src/com/android/phone/tests/
H A DCallDialTest.java29 import android.view.View;
83 public void onClick(View view) { argument
84 int id = view.getId();
85 log("onClick(View " + view + ", id " + id + ")...");
105 Log.wtf(LOG_TAG, "onClick: unexpected View: " + view);

Completed in 570 milliseconds

1234567891011>>