• 大小: 629KB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-06-13
  • 语言: Java
  • 标签:

资源简介

android小米文件管理器源码

资源截图

代码片段和文件信息

/*
 * Copyright (c) 2010-2011 The MiCode Open Source Community (www.micode.net)
 *
 * This file is part of FileExplorer.
 *
 * FileExplorer is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation either version 3 of the License or
 * (at your option) any later version.
 *
 * FileExplorer is distributed in the hope that it will be useful
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with SwiFTP.  If not see .
 */

package net.micode.fileexplorer;

import java.util.HashMap;

import android.app.Activity;

public class ActivitiesManager {
    public static final String ACTIVITY_FILE_VIEW = “FileView“;

    public static final String ACTIVITY_FILE_CATEGORY = “FileCategory“;

    public static final String ACTIVITY_TAB = “FileExplorerTab“;

    private static ActivitiesManager instance;

    private HashMap activities = new HashMap();

    private ActivitiesManager() {
    }

    // return true indicates successful false indicates the name exists
    public void registerActivity(String name Activity a) {
        activities.put(name a);
    }

    public Activity getActivity(String name) {
        return activities.get(name);
    }

    public static ActivitiesManager getInstance() {
        if (instance == null)
            instance = new ActivitiesManager();
        return instance;
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\
     文件         135  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\.gitignore
     文件        3718  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\AndroidManifest.xml
     文件       34424  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\NOTICE
     文件        1042  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\README
     目录           0  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\libs\
     文件      256908  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\libs\android-support-v13.jar
     目录           0  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\res\
     目录           0  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\res\drawable-hdpi\
     文件        3075  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\res\drawable-hdpi\arrow_down.png
     文件        3043  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\res\drawable-hdpi\arrow_up.png
     文件        2947  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\res\drawable-hdpi\bottom_button_bar_normal.9.png
     文件        2943  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\res\drawable-hdpi\bottom_button_bar_pressed.9.png
     文件        3471  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\res\drawable-hdpi\btn_bottom_last_normal.9.png
     文件        3564  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\res\drawable-hdpi\btn_bottom_last_pressed.9.png
     文件        3506  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\res\drawable-hdpi\btn_bottom_normal.9.png
     文件        3582  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\res\drawable-hdpi\btn_bottom_pressed.9.png
     文件         362  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\res\drawable-hdpi\btn_check_off_holo_light.png
     文件        2181  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\res\drawable-hdpi\btn_check_on_holo_light.png
     文件        2848  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\res\drawable-hdpi\category_bar_empty.png
     文件        4022  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\res\drawable-hdpi\category_bar_mask.9.png
     文件        3236  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\res\drawable-hdpi\connect.png
     文件        3318  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\res\drawable-hdpi\disconnect.png
     文件        2842  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\res\drawable-hdpi\dropdown.9.png
     文件        2956  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\res\drawable-hdpi\dropdown_icon_folder.png
     文件        2955  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\res\drawable-hdpi\dropdown_icon_root.png
     文件        2816  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\res\drawable-hdpi\dropdown_normal.9.png
     文件        2905  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\res\drawable-hdpi\dropdown_pressed.9.png
     文件        4332  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\res\drawable-hdpi\empty_icon.png
     文件        3083  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\res\drawable-hdpi\file_icon_default.png
     文件        4396  2012-01-31 18:57  MiCode-FileExplorer-fc66c64\res\drawable-hdpi\file_icon_mid.png
............此处省略156个文件信息

评论

共有 条评论

相关资源