Home
last modified time | relevance | path

Searched refs:targetView (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Contacts/src/com/android/contacts/editor/
DEditorAnimator.java151 public void scrollViewToTop(final View targetView) { in scrollViewToTop() argument
152 final ScrollView scrollView = getParentScrollView(targetView); in scrollViewToTop()
156 ScrollView scrollView = getParentScrollView(targetView); in scrollViewToTop()
157 scrollView.smoothScrollTo(0, offsetFromTopOfViewGroup(targetView, scrollView) in scrollViewToTop()
/packages/services/Car/car-support-lib/src/android/support/car/ui/
DPagedLayoutManager.java135 protected void onTargetFound(View targetView, RecyclerView.State state, Action action) { in onTargetFound() argument
136 int dy = calculateDyToMakeVisible(targetView, SNAP_TO_START); in onTargetFound()
DCarLayoutManager.java1480 protected void onTargetFound(View targetView, RecyclerView.State state, Action action) { in onTargetFound() argument
1481 int dy = calculateDyToMakeVisible(targetView, SNAP_TO_START); in onTargetFound()
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
DConversationFragment.java775 final View targetView = getActivity().findViewById(R.id.action_call); in onOptionsItemSelected() local
777 if (targetView != null) { in onOptionsItemSelected()
779 targetView.getLocationOnScreen(screenLocation); in onOptionsItemSelected()
780 final int centerX = screenLocation[0] + targetView.getWidth() / 2; in onOptionsItemSelected()
781 final int centerY = screenLocation[1] + targetView.getHeight() / 2; in onOptionsItemSelected()
/packages/services/Telephony/src/com/android/phone/
DSimContacts.java348 TextView textView = (TextView) itemInfo.targetView.findViewById(android.R.id.text1); in onCreateContextMenu()