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 . java 2s. c o m import android.content.Context; import android.util.AttributeSet; import android.widget.ExpandableListView; public class SnatchView extends ExpandableListView { SnatchAdt m_adt; public SnatchView(Context context) { super(context); m_adt = new SnatchAdt(context); } public SnatchView(Context context, AttributeSet attrs) { super(context); m_adt = new SnatchAdt(context); } public void start() { setAdapter(m_adt); m_adt.start(); setBackgroundColor(SnatchAdt.clr_back); } public String getChildPath(int group, int child) { return m_adt.getChildPath(group, child); } public void close() { m_adt.close(); } }