forked from amazingfate/loongoffice
This commit will combine the code of ListItemAdapter & GridItemAdapter in LibreOfficeUIActivity to one ExplorerItemAdapter which will handle both the view types. Change-Id: I45c1f5124afee82ff0b78f13609acd37be87fde1 Reviewed-on: https://gerrit.libreoffice.org/34680 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Aleksandar Stefanović <theonewithideas@gmail.com> Tested-by: Aleksandar Stefanović <theonewithideas@gmail.com>
50 lines
1.3 KiB
XML
50 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<resources>
|
|
<integer-array name="FilterTypeValues">
|
|
<item >-1</item>
|
|
<item >0</item>
|
|
<item >1</item>
|
|
<item >2</item>
|
|
</integer-array>
|
|
<string-array name="FilterTypeStringValues">
|
|
<item >-1</item>
|
|
<item >0</item>
|
|
<item >1</item>
|
|
<item >2</item>
|
|
</string-array>
|
|
<string-array name="SortModeStringValues">
|
|
<item >0</item>
|
|
<item >1</item>
|
|
<item >2</item>
|
|
<item >3</item>
|
|
<item >4</item>
|
|
<item >5</item>
|
|
</string-array>
|
|
<!-- View Mode names,values -->
|
|
<string-array name="ViewModeNames">
|
|
<item >Grid</item>
|
|
<item >List</item>
|
|
</string-array>
|
|
<string-array name="ViewModeStringValues">
|
|
<item >0</item>
|
|
<item >1</item>
|
|
</string-array>
|
|
<string-array name="FilterTypeNames">
|
|
<item>Everything</item>
|
|
<item>Documents</item>
|
|
<item>Spreadsheets</item>
|
|
<item>Presentations</item>
|
|
<item>Drawings</item>
|
|
</string-array>
|
|
<string-array name="SortModeNames">
|
|
<item >A-Z</item>
|
|
<item >Z-A</item>
|
|
<item >Oldest First</item>
|
|
<item >Newest First</item>
|
|
<item >Largest First</item>
|
|
<item >Smallest First</item>
|
|
</string-array>
|
|
|
|
|
|
</resources>
|