Search code examples
androidandroid-activityandroid-studioandroid-manifestscreen-size

How to set starting Activity for different screen size in android manifest


Is possible to set different starting activity for different screen size?

I have file res/layout-large.xml and this layout is different to res/layout.xml because in layout-large is more buttons etc. and I need start this activity in tablet because for this activity is different source file.

thx for help


Solution

  • Instead of trying to start different activity, use Fragments. And base on different screen size load different fragments with their UI and Business Logic

    Please check How to adapt ui