Android app templates?

Are there any Android application templates similar to the iPhone SDK templates?

+4
source share
2 answers

If you mean user interface templates, I would say no. There are many code examples from Google and others demonstrating simple user interfaces on which you can base your work, but not hard-coded "templates" that create your application for you. What Android offers is all the tools you need to easily design simple user interfaces in minutes using the SDK. If you're new to the Android developer, you should check out the Google code examples.

If this is not what you had in mind, I found this example demonstrating what the author describes as a template engine for android

hope this helps!

0
source

Application templates have been added to the ADT 20 .

Quote from Android Developer Blog

Application Templates: Android ADT supports new application templates for creating a new application, empty activity, master flow details and user view. These templates support the Android style guide, which makes it faster and easier to create beautiful applications. More templates will be added over time.

+3
source

Source: https://habr.com/ru/post/1313323/


All Articles