Android RecyclerView item 선택 확대 가 려 진 문제 에 대한 자세 한 설명

Android TV 에서 일반적으로 어떤 View 를 선택 하면 초점 이 확대 되 는 효과 가 있 지만 RecyclerView(ListView 또는 GridView)에서 item View 가 확대 애니메이션 을 실행 하면 다른 item View 에 의 해 가 려 집 니 다.
이 유 는 RecyclerView 의 메커니즘 이 뒤에 있 는 View z-order 일수 록 높 기 때문에 bringToFront 방법 은 쓸모 가 없다 는 것 이다.
TV 사 이 드 에 대한 사용자 정의 컨트롤 TvRecyclerView 를 실현 할 때 이 문제 가 발생 했 습 니 다.마지막 해결 방안 은:
RecyclerView 를 사용자 정의 하고 getChildDrawingOrder 방법 을 다시 작성 하여 선택 한 item 을 마지막 으로 그립 니 다.그러면 다른 view 가 가 려 지지 않 습 니 다.

public class ScaleRecyclerView extends RecyclerView {

  private int mSelectedPosition = 0;

  public ScaleRecyclerView(Context context) {
    super(context);
    init();
  }

  public ScaleRecyclerView(Context context, @Nullable AttributeSet attrs) {
    super(context, attrs);
    init();
  }

  public ScaleRecyclerView(Context context, @Nullable AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
    init();
  }

  private void init() {
    //         
    setChildrenDrawingOrderEnabled(true);
  }

  @Override
  public void onDraw(Canvas c) {
    mSelectedPosition = getChildAdapterPosition(getFocusedChild());
    super.onDraw(c);
  }

  @Override
  protected int getChildDrawingOrder(int childCount, int i) {
    int position = mSelectedPosition;
    if (position < 0) {
      return i;
    } else {
      if (i == childCount - 1) {
        if (position > i) {
          position = i;
        }
        return position;
      }
      if (i == position) {
        return childCount - 1;
      }
    }
    return i;
  }
}

RecyclerView 의 부모 클래스 속성 을 설정 하 는 것 이 좋 습 니 다:clipChildren=false,clipToPadding=false,가장자리 의 하위 view 가 부모 클래스 에 가 려 지지 않도록 해 야 합 니 다.

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:clipChildren="false"
  android:clipToPadding="false">

  <android.support.v7.widget.RecyclerView
    android:layout_width="match_parent"
    android:layout_height="245dp"
    android:layout_centerInParent="true" />

</RelativeLayout>

 사용 설명:
(1)자체 적 으로 확대 축소 구 조 를 가진다.

public class FocusRelativeLayout extends RelativeLayout {

  private Animation scaleSmallAnimation;
  private Animation scaleBigAnimation;

  public FocusRelativeLayout(Context context) {
    super(context);
  }

  public FocusRelativeLayout(Context context, AttributeSet attrs) {
    super(context, attrs);
  }

  public FocusRelativeLayout(Context context, AttributeSet attrs, int defStyleAttr) {
    super(context, attrs, defStyleAttr);
  }

  @Override
  protected void onFocusChanged(boolean gainFocus, int direction, Rect previouslyFocusedRect) {
    super.onFocusChanged(gainFocus, direction, previouslyFocusedRect);
    if (gainFocus) {
      getRootView().invalidate();
      zoomOut();
    } else {
      zoomIn();
    }
  }

  private void zoomIn() {
    if (scaleSmallAnimation == null) {
      scaleSmallAnimation = AnimationUtils.loadAnimation(getContext(), R.anim.anim_scale_small);
    }
    startAnimation(scaleSmallAnimation);
  }

  private void zoomOut() {
    if (scaleBigAnimation == null) {
      scaleBigAnimation = AnimationUtils.loadAnimation(getContext(), R.anim.anim_scale_big);
    }
    startAnimation(scaleBigAnimation);
  }
}

(2)확대 애니메이션 xml 설정 은 다음 과 같 습 니 다.

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
  android:fillAfter="true"
  android:shareInterpolator="false">
  <scale
    android:duration="150"
    android:fromXScale="1.0"
    android:fromYScale="1.0"
    android:interpolator="@android:anim/accelerate_decelerate_interpolator"
    android:pivotX="50.0%"
    android:pivotY="50.0%"
    android:repeatCount="0"
    android:toXScale="1.08"
    android:toYScale="1.08" />
</set>
(3)주 레이아웃 xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:clipChildren="false"
  android:clipToPadding="false">

  <com.app.tvviewpager.ScaleRecyclerView
    android:id="@+id/main_recyclerView"
    android:layout_width="match_parent"
    android:layout_height="210dp"
    android:layout_centerInParent="true"/>

</RelativeLayout>

(4)하위 보기 의 xml:

<FocusRelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/rl_main_layout"
  android:layout_width="300dp"
  android:layout_height="210dp"
  android:focusable="true">

  <TextView
    android:layout_width="300dp"
    android:layout_height="30dp"
    android:layout_alignParentBottom="true" />
</FocusRelativeLayout>
(5)어댑터 설정:

public class MyAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder> {
  private Context mContext;
  private OnItemStateListener mListener;
  private static int[] mColorIds = {R.color.amber, R.color.brown, R.color.cyan,
      R.color.deepPurple, R.color.green, R.color.lightBlue, R.color.lightGreen,
      R.color.lime, R.color.orange, R.color.pink, R.color.cyan, R.color.deepPurple};
  MyAdapter(Context context) {
    mContext = context;
  }

  public void setOnItemStateListener(OnItemStateListener listener) {
    mListener = listener;
  }

  @Override
  public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
    return new RecyclerViewHolder(View.inflate(mContext, R.layout.item_recyclerview, null));
  }

  @Override
  public void onBindViewHolder(RecyclerView.ViewHolder holder, final int position) {
    final RecyclerViewHolder viewHolder = (RecyclerViewHolder) holder;
    viewHolder.mRelativeLayout.setBackgroundColor(ContextCompat.getColor(mContext, mColorIds[position]));
  }

  @Override
  public int getItemCount() {
    return mColorIds.length;
  }

  private class RecyclerViewHolder extends RecyclerView.ViewHolder implements View.OnClickListener {

    FocusRelativeLayout mRelativeLayout;

    RecyclerViewHolder(View itemView) {
      super(itemView);
      mRelativeLayout = (FocusRelativeLayout) itemView.findViewById(R.id.rl_main_layout);
      mRelativeLayout.setOnClickListener(this);
    }

    @Override
    public void onClick(View v) {
      if (mListener != null) {
        mListener.onItemClick(v, getAdapterPosition());
      }
    }
  }

  public interface OnItemStateListener {
    void onItemClick(View view, int position);
  }
}

(6)Activity 의 설정:

public class RecyclerActivity extends AppCompatActivity {
  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_recycler);
    final ScaleRecyclerView recyclerView = (ScaleRecyclerView) findViewById(R.id.main_recyclerView);
    GridLayoutManager manager = new GridLayoutManager(RecyclerActivity.this, 1);
    manager.setOrientation(LinearLayoutManager.HORIZONTAL);
    manager.supportsPredictiveItemAnimations();
    recyclerView.setLayoutManager(manager);
    int itemSpace = getResources().
        getDimensionPixelSize(R.dimen.recyclerView_item_space);
    recyclerView.addItemDecoration(new SpaceItemDecoration(itemSpace));
    final MyAdapter mAdapter = new MyAdapter(RecyclerActivity.this);
    recyclerView.setAdapter(mAdapter);
  }

  private class SpaceItemDecoration extends RecyclerView.ItemDecoration {
    private int space;
    SpaceItemDecoration(int space) {
      this.space = space;
    }

    @Override
    public void getItemOffsets(Rect outRect, View view, RecyclerView parent,
                  RecyclerView.State state) {
      outRect.left = space;
    }
  }
}
효과 도 는 다음 과 같다.

이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기