美文网首页
SelectionView-快速跳选View

SelectionView-快速跳选View

作者: AlexMofer | 来源:发表于2016-09-06 16:10 被阅读0次

    SelectionView

    ICON

    快速跳选View,与列表视图搭配使用(ListView、RecyclerView),常用于联系人列表快速选取。

    预览

    Screenshots

    要求

    minSdkVersion 4

    链接

    使用

    • 基本布局
    <am.widget.selectionview.SelectionView xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/selection_sv_selection"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:svBarBackground="@drawable/bg_selection_bar"
        app:svBarItemHeight="32dp"
        app:svBarSlider="@drawable/ic_selection_slider"
        app:svBarStyle="List"
        app:svBarWidth="32dp"
        app:svNoticeAnimation="true"
        app:svNoticeBackground="@drawable/bg_selection_notice"
        app:svNoticeHeight="64dp"
        app:svNoticeLocation="ViewCenter"
        app:svNoticePadding="10dp"
        app:svNoticeWidth="64dp" />
    
    • 基本代码
    SelectionView selection = (SelectionView) findViewById(R.id.selection_sv_selection);
    selection.setBarStyle(SelectionView.STYLE_SLIDER);
    selection.setBarBackground(0);
    selection.setNoticeBackground(R.drawable.bg_selection_notice_slider);
    selection.setNoticeLocation(SelectionView.LOCATION_SLIDER_TOP);
    selection.setSelection(this);
    selection.setOnSelectedListener(this);
    

    注意

    • 基本可以通过布局实现基础代码
    • Selection在不同模式下计算方式不同,列表模式下,子项总数为类别数。滑块模式下,子项总数为列表子项总数。

    相关文章

      网友评论

          本文标题:SelectionView-快速跳选View

          本文链接:https://www.haomeiwen.com/subject/vkbdettx.html