Giter VIP home page Giter VIP logo

searchablespinner-1's Introduction

SearchableSpinner

Fully Searchable Spiner Dialog

Screen Shot

Step 1. Add the JitPack repository to your build file

allprojects {
	repositories {
		maven { url 'https://jitpack.io' }
	}
}

Step 2. Add the dependency

dependencies {
        compile 'com.github.MdFarhanRaja:SearchableSpinner:2.0'
}

Step 3. Inside JAVA

public class MainActivity extends AppCompatActivity {
ArrayList<String> items=new ArrayList<>();
SpinnerDialog spinnerDialog;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    final TextView selectedItems=(TextView)findViewById(R.id.txt);

    items.add("Mumbai");
    items.add("Delhi");
    items.add("Bengaluru");
    items.add("Hyderabad");
    items.add("Ahmedabad");
    items.add("Chennai");
    items.add("Kolkata");
    items.add("Surat");
    items.add("Pune");
    items.add("Jaipur");
    items.add("Lucknow");
    items.add("Kanpur");


    spinnerDialog=new SpinnerDialog(MainActivity.this,items,"Select or Search City","Close Button Text");// With No Animation
spinnerDialog=new SpinnerDialog(MainActivity.this,items,"Select or Search City",R.style.DialogAnimations_SmileWindow,"Close Button Text");// With 	Animation

spinnerDialog.setCancellable(true); // for cancellable
spinnerDialog.setShowKeyboard(false);// for open keyboard by default


    spinnerDialog.bindOnSpinerListener(new OnSpinerItemClick() {
        @Override
        public void onClick(String item, int position) {
            Toast.makeText(MainActivity.this, item + "  " + position+"", Toast.LENGTH_SHORT).show();
            selectedItems.setText(item + " Position: " + position);
        }
    });
    findViewById(R.id.show).setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View v) {
            spinnerDialog.showSpinerDialog();
        }
    });
}
}

Step 4. Add custom style in your styles.xml

<style name="DialogAnimations" />
	<style name="DialogAnimations.SmileWindow">
    <item name="android:windowEnterAnimation">@anim/slide_in_bottom</item>
    <item name="android:windowExitAnimation">@anim/slide_out_top</item>
	</style>

searchablespinner-1's People

Contributors

mdfarhanraja avatar

Watchers

James Cloos 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.