App strings reworked 3 (#188)

This commit is contained in:
Allan Nordhøy
2021-04-15 19:51:41 +00:00
committed by GitHub
parent 70faa7636a
commit d509c06815
16 changed files with 26 additions and 52 deletions

View File

@@ -87,9 +87,9 @@ public class AboutActivity extends AppCompatActivity
"<br/><br/>" +
getString(R.string.app_license) +
"<br/><br/>" +
String.format(getString(R.string.app_libraries), appName, libs.toString()) +
String.format(getString(R.string.app_libraries), libs.toString()) +
"<br/><br/>" +
String.format(getString(R.string.app_resources), appName, resources.toString()), HtmlCompat.FROM_HTML_MODE_COMPACT));
String.format(getString(R.string.app_resources), resources.toString()), HtmlCompat.FROM_HTML_MODE_COMPACT));
aboutTextView.setMovementMethod(LinkMovementMethod.getInstance());
}