What is the difference between view and activity in android development?

后端 未结 7 756
南旧
南旧 2021-02-04 01:37

When do I need to create a new activity and when do I need to change the view?

My app needs to do:

Screen #1

two big buttons(sort of menu)

Scr

7条回答
  •  借酒劲吻你
    2021-02-04 02:03

    View is Display System of Android where you define layout to put subclasses of View in it eg. Buttons, Images etc. But Activity is Screen System of Android where you put display as well as user-interaction,(or whatever which can be contained in full-screen Window.)

    Now for your question,you are creating full window screen#2 ,screen#3... ,so it is activity. In these screen you can define layout/or Views.

    I hope it helps.

提交回复
热议问题