Searched refs:targetView (Results 1 – 5 of 5) sorted by relevance
151 public void scrollViewToTop(final View targetView) { in scrollViewToTop() argument152 final ScrollView scrollView = getParentScrollView(targetView); in scrollViewToTop()156 ScrollView scrollView = getParentScrollView(targetView); in scrollViewToTop()157 scrollView.smoothScrollTo(0, offsetFromTopOfViewGroup(targetView, scrollView) in scrollViewToTop()
135 protected void onTargetFound(View targetView, RecyclerView.State state, Action action) { in onTargetFound() argument136 int dy = calculateDyToMakeVisible(targetView, SNAP_TO_START); in onTargetFound()
1480 protected void onTargetFound(View targetView, RecyclerView.State state, Action action) { in onTargetFound() argument1481 int dy = calculateDyToMakeVisible(targetView, SNAP_TO_START); in onTargetFound()
775 final View targetView = getActivity().findViewById(R.id.action_call); in onOptionsItemSelected() local777 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()
348 TextView textView = (TextView) itemInfo.targetView.findViewById(android.R.id.text1); in onCreateContextMenu()