Searched defs:attachView (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/tests/testables/src/android/testing/
H A DViewUtils.java34 public static void attachView(View view) { method in class:ViewUtils
/frameworks/base/core/java/com/android/internal/widget/
H A DRecyclerView.java7874 * {@link #attachView(android.view.View, int, RecyclerView.LayoutParams) reattach}
7896 * {@link #attachView(android.view.View, int, RecyclerView.LayoutParams) reattach}
7922 public void attachView(View child, int index, LayoutParams lp) { method in class:RecyclerView.LayoutManager
7943 public void attachView(View child, int index) { method in class:RecyclerView.LayoutManager
7944 attachView(child, index, (LayoutParams) child.getLayoutParams());
7954 public void attachView(View child) { method in class:RecyclerView.LayoutManager
7955 attachView(child, -1);
7981 attachView(view, toIndex);
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
H A DRecyclerView.java8444 * {@link #attachView(android.view.View, int, RecyclerView.LayoutParams) reattach}
8466 * {@link #attachView(android.view.View, int, RecyclerView.LayoutParams) reattach}
8492 public void attachView(@NonNull View child, int index, LayoutParams lp) { method in class:RecyclerView.LayoutManager
8513 public void attachView(@NonNull View child, int index) { method in class:RecyclerView.LayoutManager
8514 attachView(child, index, (LayoutParams) child.getLayoutParams());
8524 public void attachView(@NonNull View child) { method in class:RecyclerView.LayoutManager
8525 attachView(child, -1);
8551 attachView(view, toIndex);

Completed in 68 milliseconds