Reputation: 1952
Can I use android fragments with 2 columns layout on the 7 inches android tablet? It has got 800 x 480 resolution. When I use it on my smartphone with resolution 480 x 800, it shows as one column layout.
Upvotes: 0
Views: 235
Reputation: 7425
Yes. Since the screen size of smartphone is small, the fragments are shown as a separate activity whereas in tablet it is shown in 2 column layout. Moreover, it is not related to screen resolution Refer this: http://developer.android.com/guide/practices/tablets-and-handsets.html
Upvotes: 1