Searched refs:view (Results 126 - 150 of 2655) sorted by relevance

1234567891011>>

/packages/apps/Tag/src/com/android/apps/tag/record/
H A DUnknownRecord.java22 import android.view.LayoutInflater;
23 import android.view.View;
24 import android.view.ViewGroup;
/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/device/storage/
H A DFormattingProgressFragment.java21 import android.view.View;
33 public void onViewCreated(View view, @Nullable Bundle savedInstanceState) { argument
34 super.onViewCreated(view, savedInstanceState);
/packages/apps/UnifiedEmail/src/com/android/mail/ui/settings/
H A DMailPreferenceFragment.java23 import android.view.Menu;
24 import android.view.MenuInflater;
25 import android.view.MenuItem;
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
H A DConversationItemViewCoordinates.java25 import android.support.v4.view.ViewCompat;
27 import android.view.LayoutInflater;
28 import android.view.View;
29 import android.view.View.MeasureSpec;
30 import android.view.ViewGroup;
40 * (eg, checkmark, star, subject, sender, folders, etc.) It will inflate a view,
42 * to easily improve performance by creating custom view while still defining
125 // hash the attributes that contribute to item height and child view geometry
166 public void put(final int layoutId, final View view) { argument
167 mViewsCache.put(layoutId, view);
407 setFramePadding(Context context, ViewGroup view, boolean useFullPadding) argument
439 getX(View view) argument
451 getY(View view) argument
[all...]
/packages/apps/Dialer/java/com/android/dialer/simulator/
H A DSimulator.java20 import android.view.ActionProvider;
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DCaptureAnimation.java19 import android.view.animation.AccelerateDecelerateInterpolator;
20 import android.view.animation.AccelerateInterpolator;
21 import android.view.animation.DecelerateInterpolator;
22 import android.view.animation.Interpolator;
/packages/apps/Settings/src/com/android/settings/applications/
H A DFileViewHolderController.java20 import android.view.View;
24 * storage categorization preference in the ManageApplications view.
38 * Initializes the view within an AppViewHolder.
44 * Handles the behavior when the view is clicked.
/packages/apps/Settings/tests/unit/src/com/android/settings/dashboard/
H A DFirstIdViewMatcher.java20 import android.view.View;
27 * Matches on the first view with id if there are multiple views using the same Id.
49 public boolean matchesSafely(View view) {
50 this.resources = view.getResources();
54 mMatched = id == view.getId();
/packages/apps/StorageManager/src/com/android/storagemanager/
H A DButtonBarProvider.java19 import android.view.ViewGroup;
/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/Launcher3/src/com/android/launcher3/folder/
H A DPreviewImageView.java24 import android.view.View;
32 * A temporary view which displays the a bitmap (used for folder icon animation)
47 public void copy(View view) { argument
48 final int width = view.getMeasuredWidth();
49 final int height = view.getMeasuredHeight();
64 // view size by this scale factor.
65 float scale = mParent.getDescendantRectRelativeToSelf(view, mTempRect);
73 view.draw(mCanvas);
76 // Just in case this image view is still in the drag layer from a previous animation,
90 PreviewImageView view
[all...]
/packages/apps/Messaging/tests/src/com/android/messaging/ui/
H A DMultiAttachmentLayoutTest.java23 import android.view.View;
24 import android.view.ViewGroup;
54 final MultiAttachmentLayout view,
57 final int count = view.getChildCount();
62 final View child = view.getChildAt(i);
70 // Nothing other than image and overflow text view should appear in this layout.
71 fail("unexpected view in layout. view = " + child);
79 final MultiAttachmentLayout view = getView();
85 view
53 verifyContent( final MultiAttachmentLayout view, final int imageCount, final int plusCount) argument
[all...]
/packages/apps/TV/common/src/com/android/tv/common/ui/setup/
H A DSetupMultiPaneFragment.java22 import android.view.LayoutInflater;
23 import android.view.View;
24 import android.view.ViewGroup;
25 import android.view.ViewGroup.MarginLayoutParams;
48 View view = super.onCreateView(inflater, container, savedInstanceState);
56 setOnClickAction(view.findViewById(R.id.button_done), getActionCategory(), ACTION_DONE);
59 view.findViewById(R.id.button_skip).setVisibility(View.VISIBLE);
60 setOnClickAction(view.findViewById(R.id.button_skip), getActionCategory(), ACTION_SKIP);
63 View doneButtonContainer = view.findViewById(R.id.done_button_container);
64 // Use content view t
[all...]
/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/Car/Settings/src/com/android/car/settings/common/
H A DToggleLineItem.java21 import android.view.LayoutInflater;
22 import android.view.View;
23 import android.view.ViewGroup;
66 public ToggleLineItemViewHolder(View view) { argument
67 super(view);
68 titleView = (TextView) view.findViewById(R.id.title);
69 descView = (TextView) view.findViewById(R.id.desc);
70 toggle = (Switch) view.findViewById(R.id.toggle_switch);
/packages/apps/Contacts/src/com/android/contacts/widget/
H A DSingleItemAdapter.java18 import android.view.View;
19 import android.view.ViewGroup;
44 * Creates the view.
/packages/apps/Dialer/java/com/android/incallui/answer/impl/utils/
H A DInterpolators.java19 import android.view.animation.Interpolator;
20 import android.view.animation.PathInterpolator;
/packages/apps/DocumentsUI/src/com/android/documentsui/dirlist/
H A DFocusHandler.java20 import android.view.KeyEvent;
21 import android.view.View;
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/testing/
H A DTestMenuInflater.java21 import android.view.Menu;
22 import android.view.MenuInflater;
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/presets/
H A DPresetManagementDialog.java21 import android.view.LayoutInflater;
22 import android.view.View;
23 import android.view.ViewGroup;
37 View view = inflater.inflate(R.layout.filtershow_presets_management_dialog, container);
41 mEditText = (EditText) view.findViewById(R.id.editView);
42 view.findViewById(R.id.cancel).setOnClickListener(this);
43 view.findViewById(R.id.ok).setOnClickListener(this);
45 return view;
/packages/apps/Launcher3/src/com/android/launcher3/allapps/search/
H A DHeaderElevationController.java6 import android.view.View;
7 import android.view.ViewGroup;
8 import android.view.ViewOutlineProvider;
36 public void getOutline(View view, Outline outline) {
38 // relative to this view,
39 // (x = -view.getLeft()) for this view => (x = 0) for parent
40 final int left = -view.getLeft();
41 final int top = -view.getTop();
43 // Since the view i
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/notification/
H A DInterpolators.java19 import android.view.animation.Interpolator;
20 import android.view.animation.PathInterpolator;
/packages/apps/Settings/src/com/android/settings/deviceinfo/
H A DPrivateVolumeUnmount.java24 import android.view.LayoutInflater;
25 import android.view.View;
26 import android.view.View.OnClickListener;
27 import android.view.ViewGroup;
53 final View view = inflater.inflate(R.layout.storage_internal_unmount, container, false);
54 final TextView body = (TextView) view.findViewById(R.id.body);
55 final Button confirm = (Button) view.findViewById(R.id.confirm);
61 return view;
/packages/apps/Stk/src/com/android/stk/
H A DStkDigitsKeyListener.java20 import android.view.KeyEvent;
21 import android.view.inputmethod.EditorInfo;

Completed in 538 milliseconds

1234567891011>>