Where is the option to add a new preference screen in Android Studio 0.4.0?

android

Solution

The preference option doesn't exist anymore. You will need to right click the `res`->`new`->`Android resource file` and choose the resource type as `xml` in the dropdown. Then you will manually need to add the layout for preference xml.

Problem

``` Android Studio 0.4.0 ``` Hello, I want to add a new Preference Screen in Android Studio. However, I cannot find the menu option to do it. In Eclipse you would right click the resource directory | New xml file | resource type (preferences) However, when I try and do this in Android Studio, there is no resource type `preferences`. Do I have to do this manually now? Many thanks for any suggestions,

Original source