How to add Activity to manifest.xml in right way?

前端 未结 6 645
春和景丽
春和景丽 2020-12-24 03:16

should I write each activity in android manifest and how? Must each activity have intent-filter, or not?

6条回答
  •  自闭症患者
    2020-12-24 03:43

    You must mention each activity in android manifest.

    Not all activity need intent filter. intent filters show when to launch this activity. usually you will have one activity with intent filter that is to show that it is first activity when application is launched.

    inside application tag in your manifest:

            
            
            
                
                    
    
                    
                
            
    

提交回复
热议问题