Added release name

This commit is contained in:
M66B
2019-07-13 20:14:19 +02:00
parent f8badc4d06
commit a49c64d87c
3 changed files with 16 additions and 0 deletions

View File

@@ -45,9 +45,11 @@ public class FragmentAbout extends FragmentBase {
View view = inflater.inflate(R.layout.fragment_about, container, false);
TextView tvVersion = view.findViewById(R.id.tvVersion);
TextView tvRelease = view.findViewById(R.id.tvRelease);
TextView tvLimitations = view.findViewById(R.id.tvLimitations);
tvVersion.setText(getString(R.string.title_version, BuildConfig.VERSION_NAME));
tvRelease.setText(BuildConfig.RELEASE_NAME);
tvLimitations.setPaintFlags(tvLimitations.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);
return view;