0

I am Using fragments in my android application, it looks good in tablet but I don't want fragment in phone so is there any way to disable fragments for phone? Instead of fragment i want to show normal activity on phone but when you on tablet than fragment should displayed. thank you

4

1 回答 1

0

根据尺寸和密度,您可以拥有同一屏幕的不同版本。例如,假设您有一个 main.xml,可以有一个用于手机、7 英寸、10 英寸的平板电脑等。唯一的区别是,不是将平板电脑版本 main.xml 放在 res/layout 中,而是将它放在例如 res/layout-xlarge。现在,在您的常规 res/layout 中,您可以使用活动,而在 res/layout-xlarge 中,您可以使用 Fragments。查看有关此的android文档以获取更多信息,因为它现在比以前复杂一些。但这应该会给你你正在寻找的效果。

于 2012-10-10T14:43:18.967 回答