当前位置: 首页 > 编程笔记 >

Android RecyclerView item选中放大被遮挡问题详解

宋勇
2023-03-14
本文向大家介绍Android RecyclerView item选中放大被遮挡问题详解,包括了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) adapter配置:

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;
    }
  }
}

效果图如下:

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持小牛知识库。

 类似资料:
  • 我有在下拉列表中选择每个选项的测试用例,但无论我目前做什么,我都会遇到这个错误。 结果消息:系统。InvalidOperationException:元素在点(1170.0333251953125405.4250030517578)处不可单击,因为另一个元素遮挡了它 目前正试图用这个代码改变年份 - WebElement是这样定义的 这是selenium尝试选择拾取时下拉列表的样子。我看不到任何东

  • 本文向大家介绍算法题:从右边看被遮挡的二叉树,求露出的node相关面试题,主要包含被问及算法题:从右边看被遮挡的二叉树,求露出的node时的应答技巧和注意事项,需要的朋友参考一下 参考回答: Java 版本

  • 我正在使用硒进行测试。我想点击一个元素。元素非常可点击和可见,但元素的中间点被遮挡,导致错误。 这是一个主视频: 超文本标记语言代码(链接到演示): Python selenium代码: 结果: 这似乎是硒的一个相当可悲的限制。按钮是可点击的,但不是在所有点。我不想摆弄滚动和坐标。 一般来说,关于异常有许多类似的问题,例如: 无法单击元素:元素单击碎片/硒中的异常 硒不能点击元素,因为其他元素掩盖

  • 本文向大家介绍Android实现登陆页logo随键盘收放动态伸缩(完美解决键盘弹出遮挡控件的问题),包括了Android实现登陆页logo随键盘收放动态伸缩(完美解决键盘弹出遮挡控件的问题)的使用技巧和注意事项,需要的朋友参考一下 在最近的两个项目中,项目需求要求我们实现 /*登陆页面的内容能够随着键盘的弹出而被顶上去,避免键盘遮挡住登陆按钮*/ 这样的效果,宝宝心里苦呀,本来半天搞定的事还非得折

  • E/flutter(11441):#2_QuranShowState._ShowTaFseer..(封装:Alqranalkareem/Module/Quran/Show.Dart:881:32) E/Flutter(11441):#3_SliderState._HandleChanged(包:Flutter/SRC/Material/Slider.Dart:453:14) E/flutter(1

  • 本文向大家介绍C#设置窗体最大化且不遮挡任务栏的方法,包括了C#设置窗体最大化且不遮挡任务栏的方法的使用技巧和注意事项,需要的朋友参考一下 本文实例讲述了C#设置窗体最大化且不遮挡任务栏的方法。分享给大家供大家参考。具体实现方法如下: 希望本文所述对大家的C#程序设计有所帮助。