Giter VIP home page Giter VIP logo

tipsi-dropdown-android's Introduction

TipsiDropdown

CI Status

Usage

Add it in your root build.gradle at the end of repositories:

buildscript {
    repositories {
        maven { url "https://jitpack.io" }
    }
}

Add the dependency:

compile 'com.github.tipsi:tipsi-dropdown-android:0.4'

Customization

In near future dropdown will support customization using the following code:

Style style = new Style.Builder()
                  .withBackgroundColor("0x0000FF")
                  .withBorderWidth(2)
                  .withBorderColor("0xFFFFFF")
                  .withCornerRadius(10)
                  .withSeparatorHeight(1)
                  .withSeparatorColor("0xAAAAAA")
                  .withFontSize(15)
                  .withTextColor("0xCCCCCC")
                  .withTextAlignment("Left")
                  .withIndicatorImageName("custom_triangle") // image should be located in drawable
                  .withIndicatorImageResId(R.drawable.custom_triangle) // or via resource id
                  .build();

Adding dropdown into layout:

<com.gettipsi.tpsdropdown.DropdownContainer
        android:id="@+id/dropdown"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>

Applying style to dropdown

((DropdownContainer) findViewById(R.id.dropdown)).setStyle(style);

You can also extend default class Adapter and set it with

((DropdownContainer) findViewById(R.id.dropdown)).setupWithAdapter(customAdapter);

or init with list of elements

List<String> items = Arrays.asList("One", "Two", "Three", "Four");
((DropdownContainer) findViewById(R.id.dropdown)).setupWithAdapter(items);

Author

Tipsi team

License

TipsiDropdown is available under the MIT license. See the LICENSE file for more info.

tipsi-dropdown-android's People

Contributors

cybergrind avatar

Watchers

James Cloos avatar Arindam Karmakar 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.