List of usage examples for android.support.v4.app Fragment subclass-usage
From source file br.com.frs.foodrestrictions.AboutUs.java
public class AboutUs extends Fragment implements View.OnClickListener { @SuppressLint("SetTextI18n") @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
From source file au.id.tmm.anewreader.view.ItemDetailFragment.java
/** * Actual fragment that displays the detail of a particular Item (it's title, content etc). */ public class ItemDetailFragment extends Fragment { private Item item;
From source file butter.droid.fragments.AboutFragment.java
public class AboutFragment extends Fragment {
@Bind(R.id.logo_imageview)
ImageView mLogoImageView;
@Bind(R.id.facebook_button)
TextView mFacebookButton;
From source file citc.testalot.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);
From source file ca.ualberta.cs.swapmyride.View.Tab3.java
/** * The view that displays the user tab */ public class Tab3 extends Fragment { TextView viewFriends;
From source file at.bitfire.davdroid.ui.setup.LoginCredentialsFragment.java
public class LoginCredentialsFragment extends Fragment implements CompoundButton.OnCheckedChangeListener {
RadioButton radioUseEmail;
LinearLayout emailDetails;
EditText editEmailAddress;
EditPassword editEmailPassword;
From source file circleplus.app.UserInfoFragment.java
public class UserInfoFragment extends Fragment { private static final int LOGIN_REQ_CODE = 0x1; private ImageView mUserAvatar; private TextView mUsernameText, mCreatedText, mGenderText;
From source file circleplus.app.BusinessFragment.java
/** * Business fragment will list all the check-ins belongs to this location */ public class BusinessFragment extends Fragment { private ListView mListView = null;
From source file ca.xef6.firecamp.ProfilePictureSampleFragment.java
public class ProfilePictureSampleFragment extends Fragment { // Keeping the number of custom sizes low to prevent excessive network chatter. private static final int MAX_CUSTOM_SIZES = 6; private static final int DEFAULT_SIZE_INCREMENT = MAX_CUSTOM_SIZES / 2; private static final String PICTURE_SIZE_TYPE_KEY = "PictureSizeType";
From source file andlabs.lounge.lobby.ui.ChatFragment.java
public class ChatFragment extends Fragment implements ChatListener, OnClickListener { private ArrayList<ChatMessage> mConversation = new ArrayList<ChatMessage>(); private EditText mChatEditText; static ChatFragment newInstance(int num) {