Back to project page AndroidAdvancedDemos.
The source code is released under:
MIT License
If you think the Android project AndroidAdvancedDemos 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.krieger.training.androidadvanceddemos.interfaces; //w w w. j a v a 2 s . c o m import android.view.View; import android.widget.TextView; import com.essentailab.training.androidadvanceddemos.R; public class ListHeaderInflationAction implements AdapterCommand{ @Override public View execute(Object data, View v) { ((TextView)v.findViewById(R.id.header_list_txt)).setText((String)data); return v; } }