List of usage examples for android.support.v4.app Fragment subclass-usage
From source file br.liveo.ndrawer.FragmentMain.java
public class FragmentMain extends Fragment { private boolean mSearchCheck; private static final String TEXT_FRAGMENT = "TEXT_FRAGMENT"; public FragmentMain newInstance(String text) {
From source file android.arch.lifecycle.testapp.CollectingSupportFragment.java
/** * A support fragment that collects all of its events. */ @SuppressLint("ValidFragment") public class CollectingSupportFragment extends Fragment implements CollectingLifecycleOwner { private final List<Pair<TestEvent, Lifecycle.Event>> mCollectedEvents = new ArrayList<>();
From source file cc.metapro.openct.splash.views.SchoolFragment.java
public class SchoolFragment extends Fragment implements SplashContract.SchoolView {
@BindView(R.id.selection)
TextView mSelection;
@BindView(R.id.week)
Spinner mWeek;
From source file ca.rmen.android.networkmonitor.app.speedtest.SpeedTestAboutFragment.java
/** * A placeholder fragment containing a simple view. */ public class SpeedTestAboutFragment extends Fragment { private static final String TAG = Constants.TAG + SpeedTestAboutFragment.class.getSimpleName();
From source file at.alladin.rmbt.android.loopmode.info.AdditionalInfoFragment.java
public class AdditionalInfoFragment extends Fragment { public static AdditionalInfoFragment newInstance() { final AdditionalInfoFragment f = new AdditionalInfoFragment(); return f; }
From source file br.liveo.ndrawer.ui.fragment.MainFragment41.java
public class MainFragment41 extends Fragment { private boolean mSearchCheck; private static final String TEXT_FRAGMENT = "TEXT_FRAGMENT"; public static MainFragment41 newInstance(String text) {
From source file br.comoferta.ui.BaseFragment.java
/** * Created by Rex St. John (on behalf of AirPair.com) on 3/4/14. */ public class BaseFragment extends Fragment { public static final String ARG_SECTION_NUMBER = "ARG_SECTION_NUMBER";
From source file app.webelement.com.employeetracker.rd.RecyclerGridFragment.java
/** * @author Paul Burke (ipaulpro) */ public class RecyclerGridFragment extends Fragment implements OnStartDragListener { private ItemTouchHelper mItemTouchHelper;
From source file ar.com.lapotoca.resiliencia.gallery.ui.ImageDetailFragment.java
/** * This fragment will populate the children of the ViewPager from {@link ImageDetailActivity}. */ public class ImageDetailFragment extends Fragment implements ImageWorker.OnImageLoadedListener { private static final String IMAGE_DATA_EXTRA = "extra_image_data"; private static final String IMAGE_DATA_SOURCE = "extra_image_source";
From source file br.unb.mobileMedia.core.view.ExpandableListFragment.java
/**
* This class has originally been taken from
* http://stackoverflow.com/questions/6051050/expandablelistfragment-with-loadermanager-for-compatibility-package
* and then modified by Manfred Moser <manfred@simpligility.com> to get it to work with the v4 r4 compatibility
* library. With inspirations from the library source.
*