Back to project page RadaeePDF-B4A.
The source code is released under:
Apache License
If you think the Android project RadaeePDF-B4A listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.radaee.util; //from w w w.j a va2 s .c om import android.content.Context; import android.util.AttributeSet; import android.widget.ListView; public class ComboList extends ListView { ComboListAdt m_adt; public ComboList(Context context, AttributeSet attrs) { super(context, attrs); m_adt = new ComboListAdt(); } public void set_opts(String[] opts) { setAdapter(m_adt); m_adt.set_opts(opts); this.setBackgroundColor(ComboListAdt.back_color); } }