Maximum amount of activities in app? Android

前端 未结 2 1744
迷失自我
迷失自我 2021-01-13 03:13

Is there something like maximum activities in android app? I would like to know because I am thinking to create sound app with ringtone feature. It will have roughly around

2条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-13 03:32

    You shouldn't have a problem directly due to the number of activities, but I question your design. It will likely be difficult to get right and suffer performance issues and the APK will probably be very overly large.

    An alternative approach could utilize the fact that you can selectively use/show different layouts for a single activity and that a single layout can selectively show different components in the the same visible space.

提交回复
热议问题