List of usage examples for android.app Fragment subclass-usage
From source file com.skubit.android.transactions.TransactionsFragment.java
public class TransactionsFragment extends Fragment { public static TransactionsFragment newInstance() { return new TransactionsFragment(); }
From source file com.phearom.um.ui.PlaybackControlsFragment.java
/** * A class that shows the Media Queue to the user. */ public class PlaybackControlsFragment extends Fragment { private static final String TAG = LogHelper.makeLogTag(PlaybackControlsFragment.class);
From source file com.chaosinmotion.securechat.fragments.OnboardingCreateAccount.java
/** * Set the passcode fragment */ public class OnboardingCreateAccount extends Fragment implements WizardFragment { private WizardInterface wizardInterface; private EditText username;
From source file com.example.android.animationsdemo.BoardFragment.java
public class BoardFragment extends Fragment { private int MAX_COL_DISPLAYED; private int start; private int position; private ViewPager pager; private Context context;
From source file com.pgmacdesign.lacunacompanion.fragments.MailFragment.java
public class MailFragment extends Fragment { // So that there's a central "Currently selected page number and tag" private static int pageNum = 1; private static String filterTag = ""; private static long spinnerReset = 0;
From source file com.coinblesk.client.wallet.Outputs.java
/** * @author Andreas Albrecht */ public class Outputs extends Fragment implements OutputsAdapter.OutputItemClickListener { private final static String TAG = Outputs.class.getName();
From source file com.chaosinmotion.securechat.fragments.OnboardingLoginAccount.java
/** * Set the passcode fragment */ public class OnboardingLoginAccount extends Fragment implements WizardFragment { private WizardInterface wizardInterface; private EditText username;
From source file com.benlinskey.greekreference.navigationdrawer.NavigationDrawerFragment.java
/** * Fragment used for managing interactions for and presentation of a navigation drawer. * See the <a href="https://developer.android.com/design/patterns/navigation-drawer.html#Interaction"> * design guidelines</a> for a complete explanation of the behaviors implemented here. */ public class NavigationDrawerFragment extends Fragment {
From source file com.radiofarda.istgah.ui.PlaybackControlsFragment.java
/** * A class that shows the Media Queue to the user. */ public class PlaybackControlsFragment extends Fragment { private static final String TAG = LogHelper.makeLogTag(PlaybackControlsFragment.class);
From source file com.example.android.pdfrendererbasic.PdfRendererBasicFragment.java
/** * This fragment has a big {@ImageView} that shows PDF pages, and 2 {@link android.widget.Button}s to move between * pages. We use a {@link android.graphics.pdf.PdfRenderer} to render PDF pages as {@link android.graphics.Bitmap}s. */ public class PdfRendererBasicFragment extends Fragment implements View.OnClickListener {