Just use the PC name as the app list title

This commit is contained in:
Cameron Gutman
2018-07-27 23:42:57 -07:00
parent b79d328961
commit 6946e3c7a2
11 changed files with 2 additions and 13 deletions

View File

@@ -257,10 +257,9 @@ public class AppView extends Activity implements AdapterFragmentCallbacks {
String computerName = getIntent().getStringExtra(NAME_EXTRA);
String labelText = getResources().getString(R.string.title_applist)+" "+computerName;
TextView label = findViewById(R.id.appListText);
setTitle(labelText);
label.setText(labelText);
setTitle(computerName);
label.setText(computerName);
// Add a launcher shortcut for this PC (forced, since this is user interaction)
shortcutHelper.createAppViewShortcut(uuidString, computerName, uuidString, true);