Question : package br.com.automaserv.stocserv.fragments; import android.os.AsyncTask; import android.os.Bundle; import android.util.Log; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.TextView; import java.util.List; […]
Tag: android-fragment
Make two different classes communicate
Question : I’m making an Android application that uses time and date selectors (DatePicker and TimePicker), which are displayed in […]
Android Xzing library (read barcode) with fragment
Question : My application worked perfectly with Zxing, after implementing fragment, the barcode reading stopped working. I tried configuring the […]
Changing Screens in Navigation Drawer
Question : The Navigation Drawer had some changes, where it was used the onNavigationItemSelected(int position, long itemId) method and now […]
Difference between calling the fragment call and a new instance
Question : I’m working on a college project where I made an application that uses fragments. I’ve always been accustomed […]
What is the difference between Activity, FragmentActivity and Fragment?
Question : What are the differences in performance, performance, etc. in inherit from each of the classes in the controllers […]
Fragment is not replacing the marked layout
Question : I’m working on a college project and I’m having a hard time replacing a given layout with a […]
Placing click event on the button that is in a Fragment, in an Activity?
Question : I want to put a setOnClickListener on the button that is in a fragment, through my activity. Here […]
startActivityForResult () and onActivityResult () in Fragments
Question : I have a MainActivity that allows me to open two Fragments . The Fragment_1 class has a Button […]
What does popBackStack () do?
Question : I can not understand or find somewhere that will make me understand what the getActivity().getSupportFragmentManager().popBackStack(); method does Not […]
- 1
- 2