Coder Social home page Coder Social logo

dropdownmenu's Introduction

DropDownMenu

Android Arsenal

This is a DropDownMenu with the advantage of all the dropDownMenus by others before, I have written it for several times, Now the code is most clearly.

中文文档

##Feature

  1. use Adapter to add the SubDropDownMenu. Override the getView() method to supply the wantted view.
  2. use Generic to make all kinds of model(pojo,javabean...) can be used.
  3. use FilterCheckedView which implements Checkable, so you can use selector to respond to all user action.
  4. use FilterUrl to save the current choosen data, only override toString() you will get the url.

##ScreenShot DropDownMenu

Usage

the xml:

<com.baiiu.filter.DropDownMenu
    android:id="@+id/filterDropDownView"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <TextView
        android:id="@id/mFilterContentView" //mFilterContentView must be add into the view.the view can be a RecyclerView or others.
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center_vertical"
        android:textSize="22sp" />
</com.baiiu.filter.DropDownMenu> 

the JavaCode:

//set the Adapter.
dropDownView.setMenuAdapter(new DropMenuAdapter(this, titleList));

the DropMenuAdapter:

@Override
public int getMenuCount() {
    return titles.length;
}

@Override
public String getMenuTitle(int position) {
    return titles[position];
}

@Override
public int getBottomMargin(int position) {
    return 0;
}

@Override
public View getView(int position, FrameLayout parentContainer) {
    ...
    return createSingleListView();
}

add a SingleListView:

private View createSingleListView() {

    SingleListView<String> singleListView = new SingleListView<String>(mContext)
            .adapter(new SimpleTextAdapter<String>(null, mContext) {
                @Override
                public String provideText(String string) {
                    return string;
                }
            })
            .onItemClick(new OnFilterItemClickListener<String>() {
                @Override
                public void onItemClick(String item) {
                    FilterUrl.instance().singleListPosition = item;

                    FilterUrl.instance().position = 0;
                    FilterUrl.instance().positionTitle = item;

                    if (onFilterDoneListener != null) {
                        onFilterDoneListener.onFilterDone(0, "", "");
                    }
                }
            });
            
    //初始化数据
    singleListView.setList(list, -1);//默认不选中
}

License

Copyright (C) 2016 zhe zhu

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

dropdownmenu's People

Contributors

baiiu avatar ravidsrk avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.