-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConstants.java
More file actions
26 lines (20 loc) · 802 Bytes
/
Constants.java
File metadata and controls
26 lines (20 loc) · 802 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package com.ikai.unit.utilities;
import com.ikai.unit.R;
/**
* Created by shiv on 25/11/17.
*/
public class Constants {
// Variable to hold height of a product card in dp.
public static final int PRODUCT_CARD_HEIGHT = 248;
// Store all icons and item name for navigation drawer here.
public static final String[] DRAWER_ITEM_NAMES = {
"Category", "Star Membership", "Order Details",
"Customer Care", "About Us", "FAQ"
};
public static final int[] DRAWER_ITEM_ICONS_IDS = {
R.mipmap.ic_launcher, R.mipmap.ic_launcher, R.mipmap.ic_launcher
, R.mipmap.ic_launcher, R.mipmap.ic_launcher, R.mipmap.ic_launcher
};
// Read external storage request code.
public static final int READ_EXTERNAL_STORAGE_REQUEST = 500;
}