Android Open Source - binghamton_svc About Section Fragment






From Project

Back to project page binghamton_svc.

License

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.

Java Source Code

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;
  }
}




Java Source Code List

Fragments.AboutSectionFragment.java
Fragments.ContactSectionFragment.java
Fragments.EventsSectionFragment.java
Fragments.IsOnlineDialogFragment.java
Fragments.LaunchpadSectionFragment.java
Fragments.SignupSectionFragment.java
Parsers.GetEBoard.java
Parsers.GetMembershipInfo.java
Parsers.GetMissionStatement.java
Parsers.GetVolunteerHours.java
com.github.chrzhang.AboutAdapter.java
com.github.chrzhang.MainActivity.java
com.github.chrzhang.SplashScreen.java