Android实现横向滑动中间高亮显示

本文介绍了如何使用自定义的HorizontalScrollView在Android中实现类似于Wheelview的效果。核心逻辑在于滚动到特定位置,并确保在页面加载完成后执行滚动操作。通过设置延迟来确保滚动条准确显示。在MainActivity中通过Adapter进行适配。
摘要由CSDN通过智能技术生成

我这里用到的是自定义HorizontalScrollView实现简单的类似Wheelview效果,不多说先看代码.
先看布局:

<vgaw.com.WheelView
    android:id="@+id/wv"
    android:layout_width="match_parent"
    android:layout_height="100dp"
    android:text="Hello World!"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"
    app:layout_constraintTop_toTopOf="parent" >
    <LinearLayout
        android:id="@+id/ll_camera_aperture"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_vertical"
        android:orientation="horizontal"></LinearLayout>
</vgaw.com.dialogfragment.WheelView>

自定义WheelView继承HorizontalScrollView.主要逻辑:

public class WheelView extends HorizontalScrollView {
private static final int CHECK_STOP_DELAY = 10;
private int itemCount = 5;
private int showItemCount = 5;
private int itemPadding = 0;

private int width;
private int itemWidth;

private WheelViewAdapter adapter;
private LinearLayout rootView;

private int currentposstion;


public WheelVi
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值