OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:DrawerItem
(Results
1 - 2
of
2
) sorted by null
/packages/apps/UnifiedEmail/src/com/android/mail/drawer/
DrawerItem.java
40
* or a header (a resource string). A {@link
DrawerItem
} can only be one type and can never
42
* {@link
DrawerItem
#ofAccount(ControllableActivity, Account, int, boolean, BitmapCache,
44
* {@link
DrawerItem
#ofWaitView(ControllableActivity)}, etc.
49
public abstract class
DrawerItem
{
112
protected
DrawerItem
(ControllableActivity activity, Folder folder,
130
public static
DrawerItem
ofFolder(ControllableActivity activity, Folder folder,
143
public static
DrawerItem
ofAccount(ControllableActivity activity, Account account,
157
public static
DrawerItem
ofHeader(ControllableActivity activity, int resource) {
161
public static
DrawerItem
ofBlankHeader(ControllableActivity activity) {
165
public static
DrawerItem
ofBottomSpace(ControllableActivity activity)
[
all
...]
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
FolderListFragment.java
51
import com.android.mail.drawer.
DrawerItem
;
191
* Type of currently selected folder: {@link
DrawerItem
#FOLDER_INBOX},
192
* {@link
DrawerItem
#FOLDER_RECENT} or {@link
DrawerItem
#FOLDER_OTHER}.
193
* Set as {@link
DrawerItem
#UNSET} to begin with, as there is nothing selected yet.
195
private int mSelectedDrawerItemCategory =
DrawerItem
.UNSET;
590
mSelectedDrawerItemCategory =
DrawerItem
.FOLDER_INBOX;
606
@
DrawerItem
.DrawerItemCategory int itemCategory =
DrawerItem
.UNSET;
608
if (item instanceof
DrawerItem
) {
[
all
...]
Completed in 2465 milliseconds