List of usage examples for android.support.v4.app Fragment subclass-usage
From source file cardstream.CardStreamFragment.java
/** * A Fragment that handles a stream of cards. * Cards can be shown or hidden. When a card is shown it can also be marked as not-dismissible, see * {@link CardStreamLinearLayout#addCard(android.view.View, boolean)}. */ public class CardStreamFragment extends Fragment {
From source file ca.ualberta.cs.cmput301w15t04team04project.FragmentProfile.java
/**
* FragmentProfile is like the activity which get the User name
*
* @author weijie2
* @version 1.1
* @date 2015-3-16
From source file at.alladin.rmbt.android.sync.RMBTSyncFragment.java
public class RMBTSyncFragment extends Fragment { @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle bundle) { FrameLayout frameLayout = new FrameLayout(getActivity()); populateViewForOrientation(inflater, frameLayout); return frameLayout;
From source file awltour2013.geoloc.TaskManagerFragment.java
public class TaskManagerFragment extends Fragment implements TaskManager { public static final String DEFAULT_TAG = "TaskManagerFragment"; protected final Object mLock = new Object();
From source file ca.xecure.easychip.IntroductionFragment.java
public class IntroductionFragment extends Fragment {
TextView view_steps;
TextView view_email;
TextView view_balance;
@Override
From source file app.hacked.ChallengeWelcomeFragment.java
public class ChallengeWelcomeFragment extends Fragment { @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view = inflater.inflate(R.layout.challenge_welcome, null); ((TextView) view.findViewById(R.id.Title)).setTypeface(Typeface.create("sans-serif-thin", Typeface.NORMAL));
From source file at.bitfire.davdroid.syncadapter.AccountDetailsFragment.java
public class AccountDetailsFragment extends Fragment implements TextWatcher { public static final String KEY_SERVER_INFO = "server_info"; ServerInfo serverInfo; EditText editAccountName;
From source file cc.softwarefactory.lokki.android.fragments.ContactsFragment.java
public class ContactsFragment extends Fragment { private static final String TAG = "Contacts"; ArrayList<String> peopleList; Set<String> iCanSee; Set<String> canSeeMe;
From source file ar.com.martineo14.spotifystreamer.ArtistDetailActivityFragment.java
/** * A placeholder fragment containing a simple view. */ public class ArtistDetailActivityFragment extends Fragment { public static final String ARTIST_ID = "artist_id";
From source file cn.chuangblog.materialdrawerdemo.CheeseListFragment.java
public class CheeseListFragment extends Fragment { @Nullable @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { RecyclerView rv = (RecyclerView) inflater.inflate(R.layout.fragment_cheese_list, container, false);