I don't have anything specific for Android tablets, do I still need to design tablet layouts? -


i creating simple android app in want support 7" , 10" tablets. there no specific change in layout when comes tablets in app, same phone. have declared activities work in portrait mode , layouts expand different screen sizes.

currently, have following setup

androidmanifest

<uses-permission android:name="android.permission.internet" /> <uses-permission android:name="android.permission.access_network_state" /> <uses-permission android:name="android.permission.access_coarse_location" /> <uses-permission android:name="android.permission.access_fine_location" /> <uses-permission android:name="android.permission.write_external_storage" /> <uses-permission android:name="android.permission.call_phone" />  <uses-feature     android:name="android.hardware.telephony"     android:required="false" /> <uses-feature     android:name="android.hardware.location"     android:required="false" />  <supports-screens     android:smallscreens="true"     android:normalscreens="true"     android:largescreens="true"     android:xlargescreens="true" /> 

i have 4 layouts in res/layout, need design these layouts again in res/layout-sw600dp , res/layout-sw720dp in order support 7" , 10" tablets?

i have nothing specific design in them, same, please advise.


Comments

Popular posts from this blog

angular - Ionic slides - dynamically add slides before and after -

minify - Minimizing css files -

Add a dynamic header in angular 2 http provider -