WhatsNewActivity.java 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. /*
  2. * Nextcloud Android client application
  3. *
  4. * @author Bartosz Przybylski
  5. * @author Chris Narkiewicz
  6. * Copyright (C) 2015 Bartosz Przybylski
  7. * Copyright (C) 2015 ownCloud Inc.
  8. * Copyright (C) 2016 Nextcloud.
  9. * Copyright (C) 2019 Chris Narkiewicz <hello@ezaquarii.com>
  10. *
  11. * This program is free software; you can redistribute it and/or
  12. * modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
  13. * License as published by the Free Software Foundation; either
  14. * version 3 of the License, or any later version.
  15. *
  16. * This program is distributed in the hope that it will be useful,
  17. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  18. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  19. * GNU AFFERO GENERAL PUBLIC LICENSE for more details.
  20. *
  21. * You should have received a copy of the GNU Affero General Public
  22. * License along with this program. If not, see <http://www.gnu.org/licenses/>.
  23. */
  24. package com.nextcloud.client.onboarding;
  25. import android.os.Build;
  26. import android.os.Bundle;
  27. import android.view.View;
  28. import android.widget.Button;
  29. import android.widget.ImageButton;
  30. import android.widget.TextView;
  31. import com.nextcloud.client.appinfo.AppInfo;
  32. import com.nextcloud.client.di.Injectable;
  33. import com.nextcloud.client.preferences.AppPreferences;
  34. import com.owncloud.android.BuildConfig;
  35. import com.owncloud.android.R;
  36. import com.owncloud.android.ui.adapter.FeaturesViewAdapter;
  37. import com.owncloud.android.ui.adapter.FeaturesWebViewAdapter;
  38. import com.owncloud.android.ui.whatsnew.ProgressIndicator;
  39. import com.owncloud.android.utils.ThemeUtils;
  40. import javax.inject.Inject;
  41. import androidx.fragment.app.FragmentActivity;
  42. import androidx.viewpager.widget.ViewPager;
  43. /**
  44. * Activity displaying new features after an update.
  45. */
  46. public class WhatsNewActivity extends FragmentActivity implements ViewPager.OnPageChangeListener, Injectable {
  47. private ImageButton mForwardFinishButton;
  48. private Button mSkipButton;
  49. private ProgressIndicator mProgress;
  50. private ViewPager mPager;
  51. @Inject AppPreferences preferences;
  52. @Inject AppInfo appInfo;
  53. @Inject OnboardingService onboarding;
  54. @Override
  55. protected void onCreate(Bundle savedInstanceState) {
  56. super.onCreate(savedInstanceState);
  57. setContentView(R.layout.whats_new_activity);
  58. int fontColor = getResources().getColor(R.color.login_text_color);
  59. mProgress = findViewById(R.id.progressIndicator);
  60. mPager = findViewById(R.id.contentPanel);
  61. String[] urls = getResources().getStringArray(R.array.whatsnew_urls);
  62. boolean showWebView = urls.length > 0;
  63. if (showWebView) {
  64. FeaturesWebViewAdapter featuresWebViewAdapter = new FeaturesWebViewAdapter(getSupportFragmentManager(),
  65. urls);
  66. mProgress.setNumberOfSteps(featuresWebViewAdapter.getCount());
  67. mPager.setAdapter(featuresWebViewAdapter);
  68. } else {
  69. FeaturesViewAdapter featuresViewAdapter = new FeaturesViewAdapter(getSupportFragmentManager(),
  70. onboarding.getWhatsNew());
  71. mProgress.setNumberOfSteps(featuresViewAdapter.getCount());
  72. mPager.setAdapter(featuresViewAdapter);
  73. }
  74. mPager.addOnPageChangeListener(this);
  75. mForwardFinishButton = findViewById(R.id.forward);
  76. ThemeUtils.colorImageButton(mForwardFinishButton, fontColor);
  77. mForwardFinishButton.setOnClickListener(view -> {
  78. if (mProgress.hasNextStep()) {
  79. mPager.setCurrentItem(mPager.getCurrentItem() + 1, true);
  80. mProgress.animateToStep(mPager.getCurrentItem() + 1);
  81. } else {
  82. onFinish();
  83. finish();
  84. }
  85. updateNextButtonIfNeeded();
  86. });
  87. if (android.os.Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
  88. mForwardFinishButton.setBackground(null);
  89. } else {
  90. mForwardFinishButton.setBackgroundDrawable(null);
  91. }
  92. mSkipButton = findViewById(R.id.skip);
  93. mSkipButton.setTextColor(fontColor);
  94. mSkipButton.setOnClickListener(view -> {
  95. onFinish();
  96. finish();
  97. });
  98. TextView tv = findViewById(R.id.welcomeText);
  99. if (showWebView) {
  100. tv.setText(R.string.app_name);
  101. } else {
  102. tv.setText(String.format(getString(R.string.whats_new_title), appInfo.getFormattedVersionCode()));
  103. }
  104. updateNextButtonIfNeeded();
  105. }
  106. @Override
  107. public void onBackPressed() {
  108. onFinish();
  109. super.onBackPressed();
  110. }
  111. private void updateNextButtonIfNeeded() {
  112. if (!mProgress.hasNextStep()) {
  113. mForwardFinishButton.setImageResource(R.drawable.ic_ok);
  114. mSkipButton.setVisibility(View.INVISIBLE);
  115. } else {
  116. mForwardFinishButton.setImageResource(R.drawable.arrow_right);
  117. mSkipButton.setVisibility(View.VISIBLE);
  118. }
  119. }
  120. private void onFinish() {
  121. preferences.setLastSeenVersionCode(BuildConfig.VERSION_CODE);
  122. }
  123. @Override
  124. public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {
  125. // unused but to be implemented due to abstract parent
  126. }
  127. @Override
  128. public void onPageSelected(int position) {
  129. mProgress.animateToStep(position + 1);
  130. updateNextButtonIfNeeded();
  131. }
  132. @Override
  133. public void onPageScrollStateChanged(int state) {
  134. // unused but to be implemented due to abstract parent
  135. }
  136. }