Back to project page binghamton_svc.
The source code is released under:
MIT License
If you think the Android project binghamton_svc 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 Fragments; //from w ww . j a v a 2 s . com import com.github.chrzhang.R; import com.github.chrzhang.AboutAdapter; import android.content.Context; import android.os.Bundle; import android.support.v4.app.Fragment; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ExpandableListView; /** * Fragment in charge of using the adapter, which then fetches HTML data from * the club website as requested. * @author Christopher Zhang */ public class AboutSectionFragment extends Fragment { ExpandableListView exv; @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View rootView = inflater.inflate(R.layout.fragment_section_about, container, false); exv = (ExpandableListView) rootView.findViewById(R.id.expandableListView1); Context c = getActivity(); exv.setAdapter(new AboutAdapter(c)); return rootView; } }