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

AboutFragment.java « settings « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0e4d397d931a108f01c3c95705a68ee748b152a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
package com.mapswithme.maps.settings;


import android.content.ActivityNotFoundException;
import android.content.Intent;
import android.net.Uri;
import android.os.Bundle;
import android.support.annotation.IdRes;
import android.support.annotation.Nullable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;

import com.mapswithme.maps.BuildConfig;
import com.mapswithme.maps.Framework;
import com.mapswithme.maps.R;
import com.mapswithme.maps.widget.BaseShadowController;
import com.mapswithme.maps.widget.ObservableScrollView;
import com.mapswithme.maps.widget.ScrollViewShadowController;
import com.mapswithme.util.Constants;
import com.mapswithme.util.Graphics;
import com.mapswithme.util.Utils;
import com.mapswithme.util.sharing.ShareOption;
import com.mapswithme.util.statistics.AlohaHelper;
import com.mapswithme.util.statistics.Statistics;

public class AboutFragment extends BaseSettingsFragment
                        implements View.OnClickListener
{
  private void setupItem(@IdRes int id, boolean tint)
  {
    TextView view = (TextView)mFrame.findViewById(id);
    view.setOnClickListener(this);
    if (tint)
      Graphics.tint(view);
  }

  @Override
  protected int getLayoutRes()
  {
    return R.layout.about;
  }

//  @Override
//  protected BaseShadowController createShadowController()
//  {
//    clearPaddings();
//    return new ScrollViewShadowController((ObservableScrollView) mFrame.findViewById(R.id.content_frame));
//  }

  @Override
  public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState)
  {
    super.onCreateView(inflater, container, savedInstanceState);

    ((TextView) mFrame.findViewById(R.id.version))
        .setText(getString(R.string.version, BuildConfig.VERSION_NAME));

    ((TextView) mFrame.findViewById(R.id.data_version))
        .setText(getString(R.string.data_version, Framework.nativeGetDataVersion()));

    setupItem(R.id.web, true);
    setupItem(R.id.blog, true);
    setupItem(R.id.facebook, false);
    setupItem(R.id.twitter, false);
    setupItem(R.id.subscribe, true);
    setupItem(R.id.rate, true);
    setupItem(R.id.share, true);
    setupItem(R.id.copyright, false);

    return mFrame;
  }

  @Override
  public void onClick(View v)
  {
    try
    {
      switch (v.getId())
      {
      case R.id.web:
        Statistics.INSTANCE.trackEvent(Statistics.EventName.Settings.WEB_SITE);
        AlohaHelper.logClick(AlohaHelper.Settings.WEB_SITE);
        startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(Constants.Url.WEB_SITE)));
        break;

      case R.id.blog:
        Statistics.INSTANCE.trackEvent(Statistics.EventName.Settings.WEB_BLOG);
        AlohaHelper.logClick(AlohaHelper.Settings.WEB_BLOG);
        startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(Constants.Url.WEB_BLOG)));
        break;

      case R.id.facebook:
        Statistics.INSTANCE.trackEvent(Statistics.EventName.Settings.FACEBOOK);
        AlohaHelper.logClick(AlohaHelper.Settings.FACEBOOK);
        Utils.showFacebookPage(getActivity());
        break;

      case R.id.twitter:
        Statistics.INSTANCE.trackEvent(Statistics.EventName.Settings.TWITTER);
        AlohaHelper.logClick(AlohaHelper.Settings.TWITTER);
        Utils.showTwitterPage(getActivity());
        break;

      case R.id.subscribe:
        Statistics.INSTANCE.trackEvent(Statistics.EventName.Settings.SUBSCRIBE);
        AlohaHelper.logClick(AlohaHelper.Settings.MAIL_SUBSCRIBE);
        startActivity(new Intent(Intent.ACTION_SENDTO)
                          .setData(Utils.buildMailUri(Constants.Email.SUBSCRIBE,
                                                      getString(R.string.subscribe_me_subject),
                                                      getString(R.string.subscribe_me_body))));
        break;

      case R.id.rate:
        Statistics.INSTANCE.trackEvent(Statistics.EventName.Settings.RATE);
        AlohaHelper.logClick(AlohaHelper.Settings.RATE);
        Utils.openAppInMarket(getActivity(), BuildConfig.REVIEW_URL);
        break;

      case R.id.share:
        Statistics.INSTANCE.trackEvent(Statistics.EventName.Settings.TELL_FRIEND);
        AlohaHelper.logClick(AlohaHelper.Settings.TELL_FRIEND);
        ShareOption.ANY.share(getActivity(), getString(R.string.tell_friends_text), R.string.tell_friends);
        break;

      case R.id.copyright:
        Statistics.INSTANCE.trackEvent(Statistics.EventName.Settings.COPYRIGHT);
        AlohaHelper.logClick(AlohaHelper.Settings.COPYRIGHT);
//        getSettingsActivity().switchToFragment(CopyrightFragment.class, R.string.copyright);
        getSettingsActivity().replaceFragment(CopyrightFragment.class,
                                              getString(R.string.copyright), null);
        break;
      }
    } catch (ActivityNotFoundException e)
    {
      AlohaHelper.logException(e);
    }
  }
}