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

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

import android.support.v4.app.Fragment;

import com.mapswithme.maps.base.BaseMwmFragmentActivity;

public class SendLinkPlaceholderActivity extends BaseMwmFragmentActivity
{
  @Override
  protected boolean useTransparentStatusBar()
  {
    return false;
  }

  @Override
  protected Class<? extends Fragment> getFragmentClass()
  {
    return SendLinkPlaceholderFragment.class;
  }
}