Extract page title to about content

This commit is contained in:
Pfaffenrodt
2022-10-29 14:09:30 +02:00
parent dff33d3bab
commit 332e37b2eb
2 changed files with 6 additions and 2 deletions

View File

@@ -26,6 +26,10 @@ public class AboutContent {
this.context = null;
}
public String getPageTitle() {
return String.format(context.getString(R.string.about_title_fmt), context.getString(R.string.app_name));
}
public String getAppVersion() {
String version = "?";
try {