Back to project page WifiHotspotBTEnabler.
The source code is released under:
GNU General Public License
If you think the Android project WifiHotspotBTEnabler listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package ca.diogosoares.android.HotspotBTEnabler; /*from www . j a v a 2s .co m*/ import android.app.Fragment; import android.os.Bundle; public class HotspotBTEnablerManagerFragment extends Fragment { HotspotBTEnablerManager mManager; // this method is only called once for this fragment @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // retain this fragment setRetainInstance(true); } public void setData(HotspotBTEnablerManager manager) { this.mManager = manager; } public HotspotBTEnablerManager getData() { return mManager; } }