jjhesk / DropDownBoxUi

A custom made drop down box Ui for handy use.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DropDownBoxUiAPI Download gitpay

========

A custom made drop down box Ui for handy use.

Version

Please see the release log for the latest updated version. Gradle setup is also ready. X.X.X to be the latest version possible you can find from the release log.

Recent Updates

v0.8.0 There is an update issue on the module TintImageView. It is notified and removed accordingly. The new module will fit for running API 23.1.0 or above.

buildscript

repositories {
	    maven { url 'http://dl.bintray.com/jjhesk/maven/' }
}

dependencies {
  compile 'com.hkm.ui:dropdownuilib:1.0.0'
}

Apps using DropTouch

Sample Scripts

The solution is very easy. I have wrapped pixlui inside the package and it will shared the library across the whole system. If you have a simple linear layout and you will just need to append them on the fly like so:

 	setContentView(R.layout.activity_main);
        LinearLayout g = (LinearLayout) findViewById(R.id.lvt);

	//you can repeat that process however times you want.
        final Droptouch d = new Droptouch(this);
        d.setLabel("One The Thing");
        g.addView(d);

Present Layouts

screenshot

About

A custom made drop down box Ui for handy use.

License:MIT License


Languages

Language:Java 100.0%