0

I want to create an Application for 18 inch and above tablets in Android, I would like to know few queries as below:

  1. What will be the layout, drawable and values folders for the same?
  2. Does this come under Tablet or TV?
  3. Do I need to check Phone and Tablet or TV, while creating the project?

enter image description here

Suggestions are strongly appreciated, Thanks in advance.

Krrish
  • 271
  • 3
  • 17
  • do you need to develop only for tablets ? – A.s.ALI Nov 21 '17 at 06:01
  • @SharartiKAKA Yes I want to design it only for tablets which are above 18 inches example: Galaxy View 18.4", Toshiba TT301, ViewSonic VSD241. – Krrish Nov 21 '17 at 06:06
  • then you have to do it explicitly in Manifest. And yes while uploading on play store account you can restrict there for varity of devices – A.s.ALI Nov 21 '17 at 06:07

1 Answers1

0

Since you want to make your app for tablets you should choose Phone and Tablet.

You can restrict your app to only be distributed on a tablet. Like this:

<manifest ... >
<supports-screens android:smallScreens="false"
                  android:normalScreens="false"
                  android:largeScreens="true"
                  android:xlargeScreens="true"
                  android:requiresSmallestWidthDp="600" />
...
<application ... >
    ...
</application>

But it is recommended that you make your app support multiple screens

Rohit
  • 103
  • 4