Welcome to mirror list, hosted at ThFree Co, Russian Federation.

OptOutFragment.java « gdpr « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c21570533ad8da2d9e60a909fdbd7b83d16bc69c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.mapswithme.maps.gdpr;

import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

import com.mapswithme.maps.R;
import com.mapswithme.util.statistics.Statistics;

public class OptOutFragment extends Fragment
{
  @Nullable
  @Override
  public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container,
                           @Nullable Bundle savedInstanceState)
  {
    Statistics.INSTANCE.trackSettingsDetails();
    return inflater.inflate(R.layout.fragment_gdpr, container, false);
  }
}