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
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