What is the difference between Extends Application and Extends Activity in Android?

前端 未结 5 1029
花落未央
花落未央 2020-12-29 03:38

I am confused as to the difference between the two. In my application I have just used Extends Activity and the application is working perfectly, so what is the purpose of E

5条回答
  •  旧时难觅i
    2020-12-29 04:22

    Another difference from use case point of view is classes that extend Application usually have the Application context which is required for some system services, like say a RoomDatabase class which wraps around SQLiteOpenHelper so that only one instance can be created (since they are resource heavy) So extends Application in this case

提交回复
热议问题