Back to project page sms-smap-gateway.
The source code is released under:
GNU General Public License
If you think the Android project sms-smap-gateway 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.android.smap.ui; /*from w w w . j a va 2 s . c om*/ import android.content.Context; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; /** * * @author Bradley Curren * * Green Gear Library https://github.com/bradley-curran/GreenGear * @param <T> */ public interface ViewBinder { public View newView(LayoutInflater inflator, int position, ViewGroup parent); public void bindView(Context context, View view, ViewQuery query, int position); }