Added reference to FAQ about pro features price

This commit is contained in:
M66B
2018-09-13 07:15:56 +00:00
parent d8a7b922a4
commit 01137d38bb
3 changed files with 15 additions and 0 deletions

View File

@@ -39,6 +39,7 @@ public class FragmentPro extends FragmentEx implements SharedPreferences.OnShare
private TextView tvActivated;
private TextView tvList;
private Button btnPurchase;
private TextView tvPrice;
@Override
@Nullable
@@ -50,6 +51,7 @@ public class FragmentPro extends FragmentEx implements SharedPreferences.OnShare
tvActivated = view.findViewById(R.id.tvActivated);
tvList = view.findViewById(R.id.tvList);
btnPurchase = view.findViewById(R.id.btnPurchase);
tvPrice = view.findViewById(R.id.tvPrice);
tvList.setText(Html.fromHtml("<a href=\"https://email.faircode.eu/#pro\">" + Html.escapeHtml(getString(R.string.title_pro_list)) + "</a>"));
tvList.setMovementMethod(LinkMovementMethod.getInstance());
@@ -65,6 +67,8 @@ public class FragmentPro extends FragmentEx implements SharedPreferences.OnShare
}
});
tvPrice.setMovementMethod(LinkMovementMethod.getInstance());
return view;
}