a063eb55a42f74adba388c05490725f6e6536fc5
[JavaForFun] /
1 package de.example.exampletdd.fragment.map;
2
3 import android.os.Bundle;
4 import android.support.v4.app.Fragment;
5 import android.view.LayoutInflater;
6 import android.view.View;
7 import android.view.ViewGroup;
8 import de.example.exampletdd.R;
9
10 public class MapButtonsFragment extends Fragment {
11         
12     @Override
13     public View onCreateView(final LayoutInflater inflater, final ViewGroup container,
14                              final Bundle savedInstanceState) {
15     
16         // Inflate the layout for this fragment
17         return inflater.inflate(R.layout.weather_map_buttons, container, false);
18     }
19     
20     /**
21      * This method will only be called once when the retained
22      * Fragment is first created.
23      */
24     @Override
25     public void onCreate(Bundle savedInstanceState) {
26         super.onCreate(savedInstanceState);
27         
28         // Retain this fragment across configuration changes.
29         this.setRetainInstance(true);
30     }
31 }