Android: Unable to find explicit activity class… startActivity from a PreferenceActivity

前端 未结 6 1416
既然无缘
既然无缘 2020-11-30 14:19

I\'m trying to start a new Activity from a PreferenceActivity. However, it fails with \"Unable to find explicit activity class. Have you declared this activity in your Andro

6条回答
  •  执笔经年
    2020-11-30 14:40

    When starting an activity from inside another you need to provide your AndroidManifest file the parent child relationship, to ensure that the started activity will return its result to you requires parent activity. example,

    
                 
            
    

提交回复
热议问题