FeatureFragment.java 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. package com.owncloud.android.ui.fragment;
  2. import android.content.Context;
  3. import android.os.Bundle;
  4. import android.support.annotation.NonNull;
  5. import android.support.annotation.Nullable;
  6. import android.support.v4.app.Fragment;
  7. import android.text.SpannableString;
  8. import android.text.Spanned;
  9. import android.text.style.BulletSpan;
  10. import android.view.Gravity;
  11. import android.view.LayoutInflater;
  12. import android.view.View;
  13. import android.view.ViewGroup;
  14. import android.widget.ImageView;
  15. import android.widget.LinearLayout;
  16. import android.widget.TextView;
  17. import com.owncloud.android.R;
  18. import com.owncloud.android.features.FeatureItem;
  19. import com.owncloud.android.utils.ThemeUtils;
  20. public class FeatureFragment extends Fragment {
  21. private FeatureItem item;
  22. static public FeatureFragment newInstance(FeatureItem item) {
  23. FeatureFragment f = new FeatureFragment();
  24. Bundle args = new Bundle();
  25. args.putParcelable("feature", item);
  26. f.setArguments(args);
  27. return f;
  28. }
  29. @Override
  30. public void onCreate(@Nullable Bundle savedInstanceState) {
  31. super.onCreate(savedInstanceState);
  32. item = getArguments() != null ? (FeatureItem) getArguments().getParcelable("feature") : null;
  33. }
  34. @Nullable
  35. @Override
  36. public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container,
  37. @Nullable Bundle savedInstanceState) {
  38. View view = inflater.inflate(R.layout.whats_new_element, container, false);
  39. int fontColor = getResources().getColor(R.color.login_text_color);
  40. ImageView whatsNewImage = view.findViewById(R.id.whatsNewImage);
  41. if (item.shouldShowImage()) {
  42. whatsNewImage.setImageDrawable(ThemeUtils.tintDrawable(item.getImage(), fontColor));
  43. }
  44. TextView whatsNewTitle = view.findViewById(R.id.whatsNewTitle);
  45. if (item.shouldShowTitleText()) {
  46. whatsNewTitle.setText(item.getTitleText());
  47. whatsNewTitle.setTextColor(fontColor);
  48. whatsNewTitle.setVisibility(View.VISIBLE);
  49. } else {
  50. whatsNewTitle.setVisibility(View.GONE);
  51. }
  52. LinearLayout linearLayout = view.findViewById(R.id.whatsNewTextLayout);
  53. if (item.shouldShowContentText()) {
  54. if (item.shouldShowBulletPointList()) {
  55. String[] texts = getText(item.getContentText()).toString().split("\n");
  56. for (String text : texts) {
  57. TextView textView = generateTextView(text, getContext(),
  58. item.shouldContentCentered(), fontColor, true);
  59. linearLayout.addView(textView);
  60. }
  61. } else {
  62. TextView textView = generateTextView(getText(item.getContentText()).toString(),
  63. getContext(), item.shouldContentCentered(), fontColor, false);
  64. linearLayout.addView(textView);
  65. }
  66. } else {
  67. linearLayout.setVisibility(View.GONE);
  68. }
  69. return view;
  70. }
  71. private TextView generateTextView(String text, Context context,
  72. boolean shouldContentCentered, int fontColor,
  73. boolean showBulletPoints) {
  74. int standardMargin = context.getResources().getDimensionPixelSize(R.dimen.standard_margin);
  75. int doubleMargin = context.getResources()
  76. .getDimensionPixelSize(R.dimen.standard_double_margin);
  77. int zeroMargin = context.getResources().getDimensionPixelSize(R.dimen.zero);
  78. TextView textView = new TextView(context);
  79. LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(
  80. ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.WRAP_CONTENT);
  81. layoutParams.setMargins(doubleMargin, standardMargin, doubleMargin, zeroMargin);
  82. textView.setTextAppearance(context, R.style.NextcloudTextAppearanceMedium);
  83. textView.setLayoutParams(layoutParams);
  84. if (showBulletPoints) {
  85. BulletSpan bulletSpan = new BulletSpan(standardMargin, fontColor);
  86. SpannableString spannableString = new SpannableString(text);
  87. spannableString.setSpan(bulletSpan, 0, spannableString.length(),
  88. Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
  89. textView.setText(spannableString);
  90. } else {
  91. textView.setText(text);
  92. }
  93. textView.setTextColor(fontColor);
  94. if (!shouldContentCentered) {
  95. textView.setGravity(Gravity.START);
  96. } else {
  97. textView.setGravity(Gravity.CENTER_HORIZONTAL);
  98. }
  99. return textView;
  100. }
  101. }