Could not identify launch Activity: Default Activity not found

前端 未结 9 921
一生所求
一生所求 2020-12-05 23:56

I\'m new to android and I have encounterded a problem. The console said that \"Could not identify launch activity: Default Activity not found\". I have add

         


        
9条回答
  •  一生所求
    2020-12-06 00:43

    For main activity in your manifest you have to add this with category LAUNCHER (First Activity on launch app):

    
          
                
    
                
          
    
    

    For other activity you have to change category to DEFAULT:

    
        
                
    
                
        
    
    

    Check this Activity and this Start Another Activity

    So your code is:

    
    
    
    
    
    
        
              
                    
    
                    
              
        
    
    
    
    

提交回复
热议问题