Alex's answer is good, I gave it an up. To be more specific. Here is some of my code After your am start command.
adb shell input keyevent 20 # or 61 for TAB, you might need to do more than once
adb shell input text "myusername"
adb shell input keyevent 66 #or 61 for TAB
adb shell input text "mypassword"
adb shell input keyevent 66 # or 61 to tab to the login button then add a 66
My problem is that I had to bring the screen to focus first to make this code work. I had to touch the screen once, then the code will be fine. Otherwise it works sometimes, but sometimes it does not work.
I don't know what code can do the "bring to focus" function. Low level touch event will work, but it is different for different android versions, so I don't want to use it.