How to change App Name on Recent Task list? - Android

1.7k views Asked by At

Does anyone know how the Recent Tasks list in Android populates the name it displays next to each app? I would like to change this from the name of the launcher activity to something else.

2

There are 2 answers

0
Playhi On BEST ANSWER

This works for me.

    if (Build.VERSION.SDK_INT>=21){
        setTaskDescription(new ActivityManager.TaskDescription(name));
    }
1
OrhanC1 On