本文实例讲述了AndroID实现读取SD卡下所有TXT文件名并用ListVIEw显示出来的方法。分享给大家供大家参考,具体如下:
MainActivity.Java
package com.zxl;import java.io.file;import java.util.ArrayList;import java.util.HashMap;import androID.app.Activity;import androID.os.Bundle;import androID.os.Environment;import androID.util.Log;import androID.Widget.ListVIEw;import androID.Widget.SimpleAdapter;public class Txt_sdkaActivity extends Activity { private ListVIEw lv; ArrayList name; /** Called when the activity is first created. */ @OverrIDe public voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.main); lv = (ListVIEw) findVIEwByID(R.ID.lv); name = new ArrayList(); if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) { file path = Environment.getExternalStorageDirectory();// 获得SD卡路径 // file path = new file("/mnt/sdcard/"); file[] files = path.Listfiles();// 读取 getfilename(files); } SimpleAdapter adapter = new SimpleAdapter(this,name,R.layout.pes,new String[] { "name" },new int[] { R.ID.txt_tv }); lv.setAdapter(adapter); for (int i = 0; i < name.size(); i++) { Log.i("Zeng","List. name: " + name.get(i)); } } private voID getfilename(file[] files) { if (files != null) {// 先判断目录是否为空,否则会报空指针 for (file file : files) { if (file.isDirectory()) { Log.i("Zeng","若是文件目录。继续读1" + file.getname().toString() + file.getPath().toString()); getfilename(file.Listfiles()); Log.i("Zeng","若是文件目录。继续读2" + file.getname().toString() + file.getPath().toString()); } else { String filename = file.getname(); if (filename.endsWith(".txt")) { HashMap map = new HashMap(); String s = filename.substring(0,filename.lastIndexOf(".")).toString(); Log.i("Zeng","文件名txt:: " + s); map.put("name",filename .substring(0,filename.lastIndexOf("."))); name.add(map); } } } } }}
main.xml
<?xml version="1.0" enCoding="utf-8"?><relativeLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:layout_wIDth="fill_parent" androID:layout_height="fill_parent" androID:orIEntation="vertical" > <TextVIEw androID:ID="@+ID/textVIEw1" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:text="@string/hello" /> <ListVIEw androID:ID="@+ID/lv" androID:layout_wIDth="match_parent" androID:layout_height="wrap_content" androID:layout_alignParent@R_404_6823@="true" androID:layout_below="@+ID/textVIEw1" androID:layout_margintop="62dp" > </ListVIEw></relativeLayout>
pes.xml
<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" androID:orIEntation="vertical" > <TextVIEw androID:ID="@+ID/txt_tv" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:textSize="20pt" androID:layout_weight="1" /></linearLayout>
更多关于AndroID相关内容感兴趣的读者可查看本站专题:《Android编程开发之SD卡 *** 作方法汇总》、《Android文件 *** 作技巧汇总》、《Android数据库 *** 作技巧总结》、《Android编程之activity *** 作技巧总结》、《Android开发入门与进阶教程》、《Android资源 *** 作技巧汇总》、《Android视图View技巧总结》及《Android控件用法总结》
希望本文所述对大家AndroID程序设计有所帮助。
总结以上是内存溢出为你收集整理的Android实现读取SD卡下所有TXT文件名并用listView显示出来的方法全部内容,希望文章能够帮你解决Android实现读取SD卡下所有TXT文件名并用listView显示出来的方法所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)