Back to project page GameTimer.
The source code is released under:
Apache License
If you think the Android project GameTimer listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.solidnw.gametimer.model; /*www. j av a2s. c o m*/ import java.util.ArrayList; import com.solidnw.gametimer.R; public class DrawerConstants { public static final String ITEM_SELECT_GAME_MODE = "Game Mode"; public static final String ITEM_GROUP_MANAGEMENT = "Group Management"; public static final String ITEM_PLAYER_MANAGEMENT = "Player Management"; public static final String ITEM_STATISTICS = "Statistics"; public static ArrayList<String> getAllItems() { ArrayList<String> allItems = new ArrayList<String>(); allItems.add(ITEM_SELECT_GAME_MODE); allItems.add(ITEM_GROUP_MANAGEMENT); allItems.add(ITEM_PLAYER_MANAGEMENT); allItems.add(ITEM_STATISTICS); return allItems; } }