Package org.robolectric.res.android
Class ResourceTypes.ResStringPool_header
- java.lang.Object
-
- org.robolectric.res.android.ResourceTypes.ResStringPool_header
-
- Enclosing class:
- ResourceTypes
public static class ResourceTypes.ResStringPool_header extends java.lang.ObjectDefinition for a pool of strings. The data of this chunk is an array of uint32_t providing indices into the pool, relative to stringsStart. At stringsStart are all of the UTF-16 strings concatenated together; each starts with a uint16_t of the string's length and each ends with a 0x0000 terminator. If a string is > 32767 characters, the high bit of the length is set meaning to take those 15 bits as a high word and it will be followed by another uint16_t containing the low word. If styleCount is not zero, then immediately following the array of uint32_t indices into the string table is another array of indices into a style table starting at stylesStart. Each entry in the style table is an array of ResStringPool_span structures.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classResourceTypes.ResStringPool_header.Writer
-
Field Summary
Fields Modifier and Type Field Description static intSIZEOFstatic intSORTED_FLAGstatic intUTF8_FLAG
-
Constructor Summary
Constructors Constructor Description ResStringPool_header(java.nio.ByteBuffer buf, int offset)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetByte(int i)intgetShort(int i)java.nio.ByteBuffermyBuf()intmyOffset()java.lang.StringtoString()
-
-
-
Field Detail
-
SIZEOF
public static final int SIZEOF
-
SORTED_FLAG
public static final int SORTED_FLAG
- See Also:
- Constant Field Values
-
UTF8_FLAG
public static final int UTF8_FLAG
- See Also:
- Constant Field Values
-
-