Back to project page android-mimic-ui.
The source code is released under:
Apache License
If you think the Android project android-mimic-ui 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.mimic.ui.tableview; //from w ww . j av a2 s. c o m import android.view.View; public interface IListItem { public boolean isClickable(); public void setClickable(boolean clickable); public View getItemView(); }