I use the Java Android SDK in Eclipse for mobile development, in which I have to choose different versions of Android.
Can I also develop for tablets that have android using the version already have for mobiles?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Eclipse is the standard IDE for developing all Android applications, including phones and tablets.
If you have an application designed for phones and run it without changes on the tablet via Eclipse, it will run fine, although the UI may not be appropriate for the bigger size (ie Android will attempt to stretch the layouts to fill the screen, which could look strange).
You can specify different layouts to use for different types of devices.
In addition you should investigate fragments. These allow you to manage lifecycles of child views independently of the parent activity, which is very helpful for tablet UIs.
Other than that development for tablets is just like development for phones.