仿手机文件夹管理器

仿手机文件夹管理器,可以打开显示SD卡下是文件,可以进入下一级和返回上一级。

效果图:

关键代码入下:

import java.io.File;
import java.io.IOException;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

import com.stcyclub.zhimeng.R;
import com.stcyclub.zhimeng.R.drawable;
import com.stcyclub.zhimeng.R.id;
import com.stcyclub.zhimeng.R.layout;

import android.os.Bundle;
import android.os.Environment;
import android.app.Activity;
import android.content.Intent;
import android.util.Log;
import android.view.Menu;
import android.view.View;
import android.view.Window;
import android.widget.AdapterView;
import android.widget.Button;
import android.widget.ListView;
import android.widget.SimpleAdapter;
import android.widget.TextView;
import android.widget.Toast;
import android.widget.AdapterView.OnItemClickListener;

public class LocationFileLiabraryActivity extends Activity {

	private TextView tvpath;
	private ListView lvFiles;
	private Button btnParent;

	// 记录当前的父文件夹
	File currentParent;

	// 记录当前路径下的所有文件夹的文件数组
	File[] currentFiles;
	String SDCardPath;
	String folderPath;

	public String getSDPath() {
		File sdDir = null;
		boolean sdCardExist = Environment.getExternalStorageState().equals(
				android.os.Environment.MEDIA_MOUNTED); // 判断sd卡是否存在
		if (sdCardExist) {
			sdDir = Environment.getExternalStorageDirectory();// 获取根目录
		}
		return sdDir.toString();
	}

	@Override
	public void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		requestWindowFeature(Window.FEATURE_NO_TITLE);
		setContentView(R.layout.activity_sdcard_image);

//		Bundle bundle = new Bundle();
//		bundle = this.getIntent().getExtras();
//		if (bundle != null) {
//			imageORresfile = bundle.getBoolean("imageORresfile");
//		}
		lvFiles = (ListView) this.findViewById(R.id.listView);
		tvpath = (TextView) this.findViewById(R.id.tvpath);
		btnParent = (Button) this.findViewById(R.id.btnParent);

		SDCardPath = getSDPath();
		folderPath = SDCardPath + "/";
		// 获取系统的SDCard的目录
		File root = new File(SDCardPath);
		// 如果SD卡存在的话imageORresfile ture 获取图片 false获取文件
		if (root.exists()) {
//			if (imageORresfile) {
//				currentParent = root;
//				currentFiles = root.listFiles();
//
//			} else {
			currentParent = new File(folderPath);
			currentFiles = currentParent.listFiles();
//			}
			// 使用当前目录下的全部文件、文件夹来填充ListView
			inflateListView(currentFiles);
		}
		lvFiles.setOnItemClickListener(new OnItemClickListener() {
			@Override
			public void onItemClick(AdapterView<?> adapterView, View view,
					int position, long id) {
				// 如果用户单击了文件,直接返回,不做任何处理
				if (currentFiles[position].isFile()) {
					// 也可自定义扩展打开这个文件等
					String name = currentFiles[position].getName();
					//Log.d("TAG", "file...name.0...."+name);
					int index=name.lastIndexOf(".");
					//Log.d("TAG", "index...name.0...."+index);
					if(index>0){

						String suffix=name.substring(index+1, name.length());
						Log.d("TAG", "suffix.0...."+suffix);
						if (!(suffix.equals("exe")||suffix.equals("bat"))) {
							String imagePath = new String();
							try {
								imagePath = currentParent.getCanonicalPath() + "/"
										+ name;
							} catch (IOException e) {
								e.printStackTrace();
							}

							Intent intent = new Intent();
							// intent.setClass(SDCardImageActivity.this,
							// ChatActivity.class);
							Bundle bundle = new Bundle();
							bundle.putString("filePath", imagePath);
							intent.putExtras(bundle);
							LocationFileLiabraryActivity.this.setResult(10002, intent);

							LocationFileLiabraryActivity.this.finish();
							overridePendingTransition(R.anim.in_from_left, R.anim.out_to_rigth);
						} else{
							Toast.makeText(LocationFileLiabraryActivity.this, "格式不支持",
									Toast.LENGTH_LONG).show();
						}

					}else{
						Toast.makeText(LocationFileLiabraryActivity.this, "格式不支持",
								Toast.LENGTH_LONG).show();

					}

					return;
				}

				// 获取用户点击的文件夹 下的所有文件
				File[] tem = currentFiles[position].listFiles();
				if (tem == null || tem.length == 0) {

					Toast.makeText(LocationFileLiabraryActivity.this,
							"当前路径不可访问或者该路径下没有文件", Toast.LENGTH_LONG).show();
				} else {
					// 获取用户单击的列表项对应的文件夹,设为当前的父文件夹
					currentParent = currentFiles[position];
					// 保存当前的父文件夹内的全部文件和文件夹
					currentFiles = tem;
					// 再次更新ListView
					inflateListView(currentFiles);
				}

			}
		});

		// 获取上一级目录
		btnParent.setOnClickListener(new View.OnClickListener() {
			@Override
			public void onClick(View v) {

				try {
					if (!currentParent.getCanonicalPath().equals(SDCardPath)) {
						// 获取上一级目录
						currentParent = currentParent.getParentFile();
						// 列出当前目录下的所有文件
						currentFiles = currentParent.listFiles();
						// 再次更新ListView
						inflateListView(currentFiles);
					}
				} catch (Exception e) {
					// TODO: handle exception
				}

			}
		});

	}

	public void btnClick(View v){
		switch (v.getId()) {
		case R.id.location_file_btn_back:
			LocationFileLiabraryActivity.this.finish();
			overridePendingTransition(R.anim.in_from_left, R.anim.out_to_rigth);
			break;

		default:
			break;
		}
	}
	private void inflateListView(File[] files) {

		List<Map<String, Object>> listItems = new ArrayList<Map<String, Object>>();

		for (int i = 0; i < files.length; i++) {

			Map<String, Object> listItem = new HashMap<String, Object>();

			if (files[i].isDirectory()) {
				// 如果是文件夹就显示的图片为文件夹的图片
				listItem.put("icon", R.drawable.folder_picture);
			} else {
				String name=files[i].getName();
				int index=name.lastIndexOf(".");
				if(index>0){
					String suffix=name.substring(index+1, name.length());
					if(suffix.equals("jpg") || suffix.equals("bmp")
							|| suffix.equals("jpeg") || suffix.equals("png")){
						listItem.put("icon", R.drawable.picture);
					}else if(suffix.equals("avi")||suffix.equals("mkv")||suffix.equals("mp4") ||suffix.equals("flv") ||suffix.equals("3gp")||suffix.equals("rmvb")){
						listItem.put("icon", R.drawable.video_picture);
					}else if(suffix.equals("apk")){
						listItem.put("icon", R.drawable.apk_picture);
					}else if(suffix.equals("xls")||suffix.equals("doc")||suffix.equals("txt")){
						listItem.put("icon", R.drawable.word_picture);
					}else if(suffix.equals("zip")||suffix.equals("rar")){
						listItem.put("icon", R.drawable.zip_picture);
					}else if(suffix.equals("mp3")){
						listItem.put("icon", R.drawable.music_picture);
					}else{
						listItem.put("icon", R.drawable.unknow_picture);
					}
				}else{
					listItem.put("icon", R.drawable.unknow_picture);
				}
			}
			// 添加一个文件名称
			listItem.put("filename", files[i].getName());

			File myFile = new File(files[i].getName());

			// 获取文件的最后修改日期
			long modTime = myFile.lastModified();
//			SimpleDateFormat dateFormat = new SimpleDateFormat(
//					"yyyy-MM-dd HH:mm:ss");
			//System.out.println(dateFormat.format(new Date(modTime)));

			// 添加一个最后修改日期
//			listItem.put("modify",
//					"修改日期:" + dateFormat.format(new Date(modTime)));

			listItems.add(listItem);

		}

		// 定义一个SimpleAdapter
		SimpleAdapter adapter = new SimpleAdapter(LocationFileLiabraryActivity.this,
				listItems, R.layout.sdcard_image_list_item, new String[] {
						"filename", "icon", "modify" }, new int[] {
						R.id.file_name, R.id.icon, R.id.file_modify });

		// 填充数据集
		lvFiles.setAdapter(adapter);

		try {
			tvpath.setText("当前路径为:" + currentParent.getCanonicalPath());
		} catch (Exception e) {
			e.printStackTrace();
		}

	}

	@Override
	public void onStart() {
		super.onStart();
	}

	@Override
	public void onResume() {
		super.onResume();
	}

	@Override
	public void onPause() {
		super.onPause();
	}

	@Override
	public void onStop() {
		super.onStop();
	}

	@Override
	public void onDestroy() {
		super.onDestroy();
	}

	@Override
	public void onRestart() {
		super.onRestart();
	}
}

xml布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
	android:orientation="vertical" >
<RelativeLayout
        android:id="@+id/rl_layout"
		android:layout_width="fill_parent"
		android:layout_height="@dimen/activity_main_tab_title_height"
		android:background="@color/black_top"
		android:layout_alignParentTop="true"
		android:gravity="center_vertical"  >
  			<ImageButton
	            android:id="@+id/location_file_btn_back"
	            android:layout_width="@dimen/activity_btn_height_login_and_register"
	            android:layout_height="fill_parent"
	            android:layout_centerVertical="true"
	            android:background="@drawable/btn_click_goback"
	            android:src="@drawable/goback_left"
	            android:onClick="btnClick"
		    />
      		<TextView
        		android:layout_width="wrap_content"
        		android:layout_height="wrap_content"
        		android:text="文件选择"
        		android:layout_centerInParent="true"
        		android:textSize="@dimen/activity_Textsize20_4.0"
				android:textColor="#ffffff" /> 

        <Button
            android:id="@+id/btnParent"
            android:layout_width="60dp"
            android:layout_height="30dp"
            android:layout_alignParentRight="true"
            android:layout_marginRight="10dp"
            android:layout_centerInParent="true"
            android:background="@drawable/btn_click1"
       		android:textColor="@color/login_btn_text_color"
            android:text="上一级"/>
		</RelativeLayout>

    <TextView
        android:id="@+id/tvpath"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/black20"
        android:textColor="@color/black"
        android:textSize="15sp"
        android:text="文件路径"
         />

	<ListView
	    android:id="@+id/listView"
	    android:layout_width="fill_parent"
	    android:layout_height="fill_parent"></ListView>

</LinearLayout>
时间: 2024-12-22 06:15:40

仿手机文件夹管理器的相关文章

Android 编程之入门开发文件夹管理器开发详细讲解-1

在我们的手持设备中,一般都会自带设备公司自己开发的文件管理系统.拍照系统之类的东东,今天我给大伙说说入门级开发的文件夹管理器,代码贼少 总共就6个类吧,没有夹杂其他外部应用,就是一个纯文件夹管理器 APP主要功能设计:文件复制.文件夹复制.批量文件/文件夹复制.删除文件.删除文件夹.批量删除文件/文件夹.文件分类.文件搜索暂时没有写, 有兴趣的可以自己写写 APP主要应用:DrawerLayout .ListView.Fragment.IO.序列化.文件过滤.文件排序.ActionBar.Ada

Android 编程之入门开发文件夹管理器开发文件的过滤与排序-3

前面说了文件操作和主界面,接下来说说文件的过滤和排序,我们都知道在我们的设备里,不管是PC还是手机,总有一些我们 看不到的文件夹,那就是所谓的隐藏文件,大部分的隐藏文件,我们是没有权限操作的,所有对我们来说没必要,必须干掉, 还有就是给文件列表排序,方面查找,其实在现在的文件夹管理里,不知道大家有没有发现,就是在界面的最右或者最左边有 一个从A-Z竖向排列的选项,点击每个字母,它会跳到以那个字开头的文件列表项去,这是比较好用的一款东西,因为APP是之 前写的,也就没用到新式的东西了,咱们就说说粗

Android 编程之入门开发文件夹管理器开发抽屉与文件分类-4

在此文件夹管理APP里,我们可以尝试引用一些新的元素,在这里我给打击介绍一个叫抽屉的布局,QQ就用到了抽屉布局,不 过他们又在原有的基础上自己开发了新的抽屉布局,并且还蛮高大上的,顺便说说分类管理,这些都只是很初步的一些写法, 因为是前期写的,后期就没做完善了,适合一般入门级伙伴学习,首先给大家说说抽屉布局,还是以图形的方式介绍比较好 抽屉布局示例,点击红色方框按钮即可弹出抽屉布局,或者顺势向右划屏也可以弹出抽屉布局: 弹出布局: 文件管理文类: 图片分类: 音乐分类: 视频分类: 对后缀类型匹

Android文件夹管理器源码实现

一.资源管理器介绍 现在在一些移动终端上面都会有自带的资源管理器,其实其并非是Android系统自带,而是手机产商与app开发商的合作而导致融合,借助第三方的开发软件预装在出厂的手机,是新时代下的另一个霸王条款,还不能自行删除,十分麻烦. 背景铺垫完毕,由于十分讨厌这种不公平的手段,为此自行写一个实现文件资源管理器,功能基本上实现,实用不美观,不喜勿喷! 二.实现函数详解 1.显示文件列表 /** * 扫描显示文件列表 * @param path */ private void showFile

文件夹管理器

1.文件管理器(NSFileManager) 1> 创建文件夹 创建所需的方法在头文件的声明: /* createDirectoryAtPath:withIntermediateDirectories:attributes:error: creates a directory at the specified path. If you pass 'NO' for createIntermediates, the directory must not exist at the time this

C#WinForm treeview 简单文件夹管理器 查看文件夹下的文件,子文件下的文件

1 查看的文件夹中的内容 2 UI 3 代码 1 using System; 2 using System.Collections.Generic; 3 using System.ComponentModel; 4 using System.Data; 5 using System.Drawing; 6 using System.IO; 7 using System.Linq; 8 using System.Text; 9 using System.Threading.Tasks; 10 usi

Android 编程之入门开发文件夹管理器开发文件事件操作-2

上一篇博客,我们已经得到了文件夹列表,我们需要对文件列表子项添加事件,比如我们点击的是文件,就执行 打开操作,点击的是文件夹执行打开文件夹操作,遍历文件清单,以此类推直到最后一个是文件位置,关于文件 与文件夹的处理后面会讲到 在我的程序里,我写了一个类,对文件进行处理,FileOpreationUitl: package com.example.util; import java.io.File; import java.io.FileInputStream; import java.io.Fi

linux:文件及文件夹管理

http://blog.csdn.net/pipisorry/article/details/39854265 查看用户的信息 pika:~$id pikauid=1000(pika) gid=1000(pika) groups=1000(pika),4(adm),24(cdrom),27(sudo),30(dip),46(plugdev),108(lpadmin),124(sambashare),125(docker) 文件夹与路径 cd:变换目弽pwd:显示弼前目弽mkdir:建立一个新的文

手机文件夹加密软件

手机文件夹加密软件 虽然现在很多人热衷于苹果手机,但是安卓系统以其良好的使用性能,被众多的手机品牌所运用,我们所熟知的三星.小米都是安卓系统的,使用安卓系统的手机我们称之为安卓手机.也是就说安卓手机还是拥有最大的使用群体,总结了这些用户的一些常有的问题,发现有很多的人希望能够给安卓手机文件夹进行加密,因为现在手机不仅仅是打电话的工具,有的时候还充当着电脑的职责,接受文件是常有的事情,也有人把手机当U盘用,将经常使用的文件存储在手机里,所以希望能够给手机文件夹进行加密. 正好本人也有这方面的需求,