Java Code Examples for com.android.resources.ResourceType#PLURALS
The following examples show how to use
com.android.resources.ResourceType#PLURALS .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PluralsResourceValue.java From java-n-IDE-for-Android with Apache License 2.0 | 2 votes |
/** * Constructs a new {@linkplain PluralsResourceValue} * * @param name the name of the array * @param isFramework whether this is a framework resource */ public PluralsResourceValue(String name, boolean isFramework) { super(ResourceType.PLURALS, name, isFramework); }
Example 2
Source File: PluralsResourceValue.java From javaide with GNU General Public License v3.0 | 2 votes |
/** * Constructs a new {@linkplain PluralsResourceValue} * * @param name the name of the array * @param isFramework whether this is a framework resource */ public PluralsResourceValue(String name, boolean isFramework) { super(ResourceType.PLURALS, name, isFramework); }