The command am start -n com.android.settings/.Settings$MobileNetworkListActivity
is interpreted by Android like this:
- Start the app
com.android.settings
- Open the activity
com.android.settings.Settings$MobileNetworkListActivity
Now you got the message
Warning: Activity not started, intent has been delivered to currently running top-most instance
This effectively means that an instance of the app com.android.settings
was already running in foreground (top-most) when you executed the am start
command. And Android was just telling you that instead of starting a new instance of the Android settings app it had reused the already open instance and had sent the intent that contains the information to open the activity com.android.settings.Settings$MobileNetworkListActivity
to that instance.
So everything is fine, the command was successfully executed, you can simply ignore this warning.