Searched refs:view (Results 226 - 250 of 2655) sorted by relevance

1234567891011>>

/packages/apps/Settings/src/com/android/settings/
H A DAppProgressPreference.java39 public void onBindViewHolder(PreferenceViewHolder view) { argument
40 super.onBindViewHolder(view);
42 final ProgressBar progress = (ProgressBar) view.findViewById(android.R.id.progress);
H A DSelectableEditTextPreference.java22 import android.view.View;
50 protected void onBindDialogView(View view) { argument
51 super.onBindDialogView(view);
/packages/apps/Settings/src/com/android/settings/wifi/
H A DWifiDetailPreference.java47 public void onBindViewHolder(PreferenceViewHolder view) { argument
48 super.onBindViewHolder(view);
49 TextView textView = ((TextView) view.findViewById(R.id.widget_summary));
/packages/apps/TV/src/com/android/tv/dvr/ui/browse/
H A DActionPresenterSelector.java25 import android.view.LayoutInflater;
26 import android.view.View;
27 import android.view.ViewGroup;
58 public ActionViewHolder(View view, int layoutDirection) { argument
59 super(view);
60 mButton = (Button) view.findViewById(R.id.lb_action_button);
103 final int startPadding = vh.view.getResources()
105 final int endPadding = vh.view.getResources()
107 vh.view.setPaddingRelative(startPadding, 0, endPadding, 0);
109 final int padding = vh.view
[all...]
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/connectivity/
H A DWpsPinFragment.java21 import android.view.View;
42 public void onViewCreated(View view, @Nullable Bundle savedInstanceState) { argument
43 super.onViewCreated(view, savedInstanceState);
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/
H A DProgressDialogFragment.java26 import android.view.LayoutInflater;
27 import android.view.View;
28 import android.view.ViewGroup;
47 final ViewGroup view =
50 mIconView = (ImageView) view.findViewById(android.R.id.icon);
51 mTitleView = (TextView) view.findViewById(android.R.id.title);
52 mExtraTextView = (TextView) view.findViewById(R.id.extra);
53 mSummaryView = (TextView) view.findViewById(android.R.id.summary);
54 mProgressBar = (ProgressBar) view.findViewById(android.R.id.progress);
57 final ViewGroup.LayoutParams params = view
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/text/
H A DEmailAddressSpan.java22 import android.view.View;
39 public void onClick(View view) { argument
40 ComposeActivity.composeToAddress(view.getContext(), mAccount, mEmailAddress);
/packages/apps/WallpaperPicker/src/com/android/wallpaperpicker/tileinfo/
H A DDrawableThumbWallpaperInfo.java5 import android.view.LayoutInflater;
6 import android.view.View;
7 import android.view.ViewGroup;
/packages/services/BuiltInPrintService/src/com/android/bips/ui/
H A DAddManualPrinterDialog.java27 import android.view.KeyEvent;
28 import android.view.View;
29 import android.view.Window;
30 import android.view.WindowManager;
31 import android.view.inputmethod.EditorInfo;
32 import android.view.inputmethod.InputMethodManager;
75 View view = getLayoutInflater().inflate(R.layout.manual_printer_add, null);
76 setView(view);
101 private void openKeyboard(TextView view) { argument
107 view
178 onKey(View view, int keyCode, KeyEvent keyEvent) argument
[all...]
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DSwipeHelper.java28 import android.view.MotionEvent;
29 import android.view.VelocityTracker;
30 import android.view.View;
31 import android.view.animation.DecelerateInterpolator;
146 private float getAlphaForOffset(View view) { argument
147 float viewSize = getSize(view);
150 float pos = view.getTranslationX();
160 private float getTextAlphaForOffset(View view) { argument
161 float viewSize = getSize(view);
164 float pos = view
174 invalidateGlobalRegion(View view) argument
182 invalidateGlobalRegion(View view, RectF childBounds) argument
266 dismissChild(final SwipeableItemView view, float velocity) argument
318 snapChild(final SwipeableItemView view) argument
[all...]
/packages/apps/Car/Dialer/src/com/android/car/dialer/
H A DContactResultsAdapter.java23 import android.view.LayoutInflater;
24 import android.view.View;
25 import android.view.ViewGroup;
27 import com.android.car.view.PagedListView;
75 View view = LayoutInflater.from(parent.getContext())
77 return new ContactResultViewHolder(view);
87 // Only one type of view is created, so no need for an individualized view type.
/packages/apps/Car/Radio/src/com/android/car/radio/
H A DPresetsAdapter.java21 import android.view.LayoutInflater;
22 import android.view.View;
23 import android.view.ViewGroup;
25 import com.android.car.view.PagedListView;
36 // Only one type of view in this adapter.
84 View view = LayoutInflater.from(parent.getContext())
87 return new PresetsViewHolder(view, this /* listener */);
/packages/apps/Dialer/java/com/android/dialershared/bubble/
H A DCheckableImageButton.java20 import android.support.v4.view.AccessibilityDelegateCompat;
21 import android.support.v4.view.ViewCompat;
22 import android.support.v4.view.accessibility.AccessibilityEventCompat;
23 import android.support.v4.view.accessibility.AccessibilityNodeInfoCompat;
26 import android.view.View;
27 import android.view.accessibility.AccessibilityEvent;
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/state/
H A DStatePanelTrack.java28 import android.view.GestureDetector;
29 import android.view.MotionEvent;
30 import android.view.View;
31 import android.view.ViewGroup;
125 View view = findChildAt((int) e.getX(), (int) e.getY());
126 if (view == null) {
129 if (view instanceof StateView) {
130 StateView stateView = (StateView) view;
145 StateView view = (StateView) getChildAt(i);
146 if (view
193 onTouch(MotionEvent event, StateView view) argument
329 findChild(View view) argument
[all...]
/packages/apps/Messaging/src/com/android/messaging/ui/contact/
H A DContactListAdapter.java21 import android.view.LayoutInflater;
22 import android.view.View;
23 import android.view.ViewGroup;
45 public void bindView(final View view, final Context context, final Cursor cursor) { argument
46 Assert.isTrue(view instanceof ContactListItemView);
47 final ContactListItemView contactListItemView = (ContactListItemView) view;
/packages/apps/Settings/src/com/android/settings/accessibility/
H A DAccessibilitySettingsForSetupWizardActivity.java23 import android.view.accessibility.AccessibilityEvent;
24 import android.view.LayoutInflater;
25 import android.view.Menu;
26 import android.view.View;
27 import android.view.WindowInsets;
35 import com.android.setupwizardlib.view.NavigationBar;
47 // Finish configuring the content view.
/packages/apps/Settings/src/com/android/settings/fuelgauge/
H A DBatteryHistoryPreference.java24 import android.view.View;
75 public void onBindViewHolder(PreferenceViewHolder view) { argument
76 super.onBindViewHolder(view);
82 ((TextView) view.findViewById(R.id.charge)).setText(mBatteryInfo.batteryPercentString);
83 mSummaryView = (TextView) view.findViewById(R.id.bottom_summary);
90 UsageView usageView = (UsageView) view.findViewById(R.id.battery_usage);
/packages/apps/TV/src/com/android/tv/dvr/ui/
H A DChangeImageTransformWithScaledParent.java26 import android.view.View;
60 View view = transitionValues.view;
63 if (matrix != null && view.getId() == R.id.details_overview_image
64 && view instanceof ImageView) {
65 ImageView imageView = (ImageView) view;
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DEmailCopyContextMenu.java26 import android.view.ContextMenu;
27 import android.view.MenuInflater;
28 import android.view.MenuItem;
29 import android.view.View;
30 import android.view.ContextMenu.ContextMenuInfo;
31 import android.view.View.OnCreateContextMenuListener;
/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/apps/Camera2/src/com/android/camera/
H A DPhotoController.java20 import android.view.View;
53 public void onSingleTapUp(View view, int x, int y); argument
/packages/apps/Car/Settings/src/com/android/car/settings/common/
H A DSeekbarLineItem.java21 import android.view.LayoutInflater;
22 import android.view.View;
23 import android.view.ViewGroup;
89 public ViewHolder(View view) { argument
90 super(view);
91 titleView = view.findViewById(R.id.title);
92 seekBar = view.findViewById(R.id.seekbar);
93 iconView = view.findViewById(R.id.icon);
/packages/apps/Contacts/src/com/android/contacts/list/
H A DJoinContactListAdapter.java28 import android.view.LayoutInflater;
29 import android.view.View;
30 import android.view.ViewGroup;
144 View view = inflate(R.layout.join_contact_picker_section_header, parent);
145 ((TextView) view.findViewById(R.id.text)).setText(
147 return view;
150 View view = inflate(R.layout.join_contact_picker_section_header, parent);
151 ((TextView) view.findViewById(R.id.text)).setText(
153 return view;
161 protected void bindHeaderView(View view, in argument
[all...]
/packages/apps/Contacts/tests/src/com/android/contacts/test/
H A DFragmentTestActivity.java21 import android.view.Window;
22 import android.view.WindowManager;
/packages/apps/DeskClock/src/com/android/deskclock/actionbarmenu/
H A DNavUpMenuItemController.java20 import android.view.Menu;
21 import android.view.MenuItem;

Completed in 716 milliseconds

1234567891011>>