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

BaseNewsFragment.java « news « maps « mapswithme « com « src « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7d7d293a873047885f462154fd618a8dd37b3d6a (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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
package com.mapswithme.maps.news;

import android.app.Dialog;
import android.content.res.Resources;
import android.content.res.TypedArray;
import android.os.Bundle;
import android.support.annotation.ArrayRes;
import android.support.annotation.CallSuper;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.annotation.StyleRes;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentManager;
import android.support.v4.view.PagerAdapter;
import android.support.v4.view.ViewPager;
import android.support.v7.widget.SwitchCompat;
import android.text.TextUtils;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.view.ViewTreeObserver;
import android.view.Window;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;

import com.mapswithme.maps.MwmApplication;
import com.mapswithme.maps.R;
import com.mapswithme.maps.base.BaseMwmDialogFragment;
import com.mapswithme.util.ThemeUtils;
import com.mapswithme.util.UiUtils;
import com.mapswithme.util.Utils;

import java.util.ArrayList;
import java.util.List;

public abstract class BaseNewsFragment extends BaseMwmDialogFragment
{
  @ArrayRes
  static final int TITLE_KEYS = R.array.news_title_keys;
  private ViewPager mPager;
  private View mPrevButton;
  private View mNextButton;
  private View mDoneButton;
  private ImageView[] mDots;

  private int mPageCount;

  @Nullable
  private NewsDialogListener mListener;

  abstract class Adapter extends PagerAdapter
  {
    @NonNull
    private final int[] mImages;
    @NonNull
    private final String[] mTitles;
    @NonNull
    private final String[] mSubtitles;
    @NonNull
    private final List<PromoButton> mPromoButtons;
    @NonNull
    private final String[] mSwitchTitles;
    @NonNull
    private final String[] mSwitchSubtitles;

    Adapter()
    {
      Resources res = MwmApplication.get().getResources();

      mTitles = getTitles(res);
      mSubtitles = res.getStringArray(getSubtitles1());

      int subtitles2 = getSubtitles2();
      if (subtitles2 != 0)
      {
        String[] strings = res.getStringArray(subtitles2);
        for (int i = 0; i < mSubtitles.length; i++)
        {
          String s = strings[i];
          if (!TextUtils.isEmpty(s))
            mSubtitles[i] += "\n\n" + s;
        }
      }

      mPromoButtons = getPromoButtons(res);
      mSwitchTitles = res.getStringArray(getSwitchTitles());
      mSwitchSubtitles = res.getStringArray(getSwitchSubtitles());

      TypedArray images = res.obtainTypedArray(getImages());
      mImages = new int[images.length()];
      for (int i = 0; i < mImages.length; i++)
        mImages[i] = images.getResourceId(i, 0);

      images.recycle();
    }

    @NonNull
    private String[] getTitles(@NonNull Resources res)
    {
      String[] keys = res.getStringArray(getTitleKeys());
      final int length = keys.length;
      if (length == 0)
        throw new AssertionError("Title keys must me non-empty!");

      String[] titles = new String[length];
      for (int i = 0; i < length; i++)
        titles[i] = Utils.getStringValueByKey(getContext(), keys[i]);

      return titles;
    }

    @ArrayRes
    abstract int getTitleKeys();
    @ArrayRes
    abstract int getSubtitles1();
    @ArrayRes
    abstract int getSubtitles2();
    @ArrayRes
    abstract int getButtonLabels();
    @ArrayRes
    abstract int getButtonLinks();
    @ArrayRes
    abstract int getSwitchTitles();
    @ArrayRes
    abstract int getSwitchSubtitles();
    @ArrayRes
    abstract int getImages();

    @Override
    public int getCount()
    {
      return mImages.length;
    }

    @Override
    public boolean isViewFromObject(View view, Object object)
    {
      return (view == object);
    }

    @Override
    public Object instantiateItem(ViewGroup container, final int position)
    {
      View res = LayoutInflater.from(container.getContext()).inflate(R.layout.news_page, container, false);

      ((ImageView)res.findViewById(R.id.image))
        .setImageResource(mImages[position]);

      ((TextView)res.findViewById(R.id.title))
        .setText(mTitles[position]);

      ((TextView)res.findViewById(R.id.subtitle))
        .setText(mSubtitles[position]);

      processSwitchBlock(position, res);
      processButton(position, res);

      container.addView(res);
      return res;
    }

    @NonNull
    private List<PromoButton> getPromoButtons(@NonNull Resources res)
    {
      String[] labels = res.getStringArray(getButtonLabels());
      String[] links = res.getStringArray(getButtonLinks());

      if (labels.length != links.length)
        throw new AssertionError("Button labels count must be equal to links count!");

      List<PromoButton> result = new ArrayList<>();
      for (int i = 0; i < labels.length; i++)
        result.add(new PromoButton(labels[i], links[i]));

      return result;
    }

    private void processSwitchBlock(int position, @NonNull View res)
    {
      View switchBlock = res.findViewById(R.id.switch_block);
      String text = mSwitchTitles[position];
      if (TextUtils.isEmpty(text))
        UiUtils.hide(switchBlock);
      else
      {
        ((TextView)switchBlock.findViewById(R.id.switch_title))
          .setText(text);

        TextView subtitle = switchBlock.findViewById(R.id.switch_subtitle);
        if (TextUtils.isEmpty(mSwitchSubtitles[position]))
          UiUtils.hide(subtitle);
        else
          subtitle.setText(mSwitchSubtitles[position]);

        final SwitchCompat checkBox = switchBlock.findViewById(R.id.switch_box);
        checkBox.setOnCheckedChangeListener((buttonView, isChecked) -> onSwitchChanged(position, isChecked));

        switchBlock.setOnClickListener(v -> checkBox.performClick());
      }
    }

    private void processButton(int position, @NonNull View res)
    {
      TextView button = res.findViewById(R.id.button);
      PromoButton promo = mPromoButtons.get(position);
      if (promo == null || TextUtils.isEmpty(promo.getLabel()))
      {
        UiUtils.hide(button);
        return;
      }

      button.setText(promo.getLabel());
      button.setOnClickListener(v -> Utils.openUrl(getContext(), promo.getLink()));
    }

    @Override
    public void destroyItem(ViewGroup container, int position, Object object)
    {
      container.removeView((View)object);
    }
  }

  void onSwitchChanged(int index, boolean isChecked) {}

  private void update()
  {
    int cur = mPager.getCurrentItem();
    UiUtils.showIf(cur > 0, mPrevButton);
    UiUtils.showIf(cur + 1 < mPageCount, mNextButton);
    UiUtils.visibleIf(cur + 1 == mPageCount, mDoneButton);

    if (mPageCount == 1)
      return;

    for (int i = 0; i < mPageCount; i++)
    {
      mDots[i].setImageResource(ThemeUtils.isNightTheme() ? i == cur ? R.drawable.news_marker_active_night
                                                                     : R.drawable.news_marker_inactive_night
                                                          : i == cur ? R.drawable.news_marker_active
                                                                     : R.drawable.news_marker_inactive);
    }
  }

  private void fixPagerSize()
  {
    if (!UiUtils.isTablet())
      return;

    UiUtils.waitLayout(mPager, new ViewTreeObserver.OnGlobalLayoutListener()
    {
      @Override
      public void onGlobalLayout()
      {
        int maxWidth = UiUtils.dimen(R.dimen.news_max_width);
        int maxHeight = UiUtils.dimen(R.dimen.news_max_height);

        if (mPager.getWidth() > maxWidth || mPager.getHeight() > maxHeight)
        {
          mPager.setLayoutParams(new LinearLayout.LayoutParams(Math.min(maxWidth, mPager.getWidth()),
                                                               Math.min(maxHeight, mPager.getHeight())));
        }
      }
    });
  }

  abstract Adapter createAdapter();

  @Override
  protected int getCustomTheme()
  {
    return (UiUtils.isTablet() ? super.getCustomTheme()
                               : getFullscreenTheme());
  }

  @StyleRes
  @Override
  protected int getFullscreenLightTheme()
  {
    return R.style.MwmTheme_DialogFragment_NoFullscreen;
  }

  @StyleRes
  @Override
  protected int getFullscreenDarkTheme()
  {
    return R.style.MwmTheme_DialogFragment_NoFullscreen_Night;
  }

  @Override
  public @NonNull Dialog onCreateDialog(Bundle savedInstanceState)
  {
    Dialog res = super.onCreateDialog(savedInstanceState);
    res.requestWindowFeature(Window.FEATURE_NO_TITLE);

    View content = View.inflate(getActivity(), R.layout.fragment_news, null);
    res.setContentView(content);

    mPager = (ViewPager)content.findViewById(R.id.pager);
    fixPagerSize();

    Adapter adapter = createAdapter();
    mPageCount = adapter.getCount();
    mPager.setAdapter(adapter);
    mPager.addOnPageChangeListener(new ViewPager.SimpleOnPageChangeListener()
    {
      @Override
      public void onPageSelected(int position)
      {
        update();
      }
    });

    ViewGroup dots = (ViewGroup)content.findViewById(R.id.dots);
    if (mPageCount == 1)
      UiUtils.hide(dots);
    else
    {
      int dotCount = dots.getChildCount();
      mDots = new ImageView[mPageCount];
      for (int i = 0; i < dotCount; i++)
      {
        ImageView dot = (ImageView)dots.getChildAt(i);

        if (i < (dotCount - mPageCount))
          UiUtils.hide(dot);
        else
          mDots[i - (dotCount - mPageCount)] = dot;
      }
    }

    mPrevButton = content.findViewById(R.id.back);
    mNextButton = content.findViewById(R.id.next);
    mDoneButton = content.findViewById(R.id.done);

    mPrevButton.setOnClickListener(new View.OnClickListener()
    {
      @Override
      public void onClick(View v)
      {
        mPager.setCurrentItem(mPager.getCurrentItem() - 1, true);
      }
    });

    mNextButton.setOnClickListener(new View.OnClickListener()
    {
      @Override
      public void onClick(View v)
      {
        mPager.setCurrentItem(mPager.getCurrentItem() + 1, true);
      }
    });

    mDoneButton.setOnClickListener(new View.OnClickListener()
    {
      @Override
      public void onClick(View v)
      {
        onDoneClick();
      }
    });

    update();
    return res;
  }

  @CallSuper
  protected void onDoneClick()
  {
    dismissAllowingStateLoss();
    if (mListener != null)
      mListener.onDialogDone();
  }

  @SuppressWarnings("TryWithIdenticalCatches")
  static void create(@NonNull FragmentActivity activity,
                     @NonNull Class<? extends BaseNewsFragment> clazz,
                     @Nullable NewsDialogListener listener)
  {
    try
    {
      final BaseNewsFragment fragment = clazz.newInstance();
      fragment.mListener = listener;
      activity.getSupportFragmentManager()
          .beginTransaction()
          .add(fragment, clazz.getName())
          .commitAllowingStateLoss();
    } catch (java.lang.InstantiationException ignored)
    {}
    catch (IllegalAccessException ignored)
    {}
  }

  static boolean recreate(FragmentActivity activity, Class<? extends BaseNewsFragment> clazz)
  {
    FragmentManager fm = activity.getSupportFragmentManager();
    Fragment f = fm.findFragmentByTag(clazz.getName());
    if (f == null)
      return false;

    // If we're here, it means that the user has rotated the screen.
    // We use different dialog themes for landscape and portrait modes on tablets,
    // so the fragment should be recreated to be displayed correctly.
    fm.beginTransaction().remove(f).commitAllowingStateLoss();
    fm.executePendingTransactions();
    return true;
  }

  @Nullable
  protected NewsDialogListener getListener()
  {
    return mListener;
  }

  public interface NewsDialogListener
  {
    void onDialogDone();
  }
}