Android SD 卡文件瀏覽器

本文參考文獻(xiàn):《瘋狂Android講義 : 第2版

主布局文件:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@+id/container"
    android:background="@color/colorGray"
    >

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/path"
        android:gravity="center_horizontal"
        android:layout_alignParentTop="true"
        />

    <ListView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/list"
        android:divider="#000"
        android:dividerHeight="1px"
        android:layout_below="@+id/path"
        />

    <Button
        android:id="@+id/parent"
        android:layout_width="38dp"
        android:layout_height="34dp"
        android:background="@drawable/back"
        android:layout_centerHorizontal="true"
        android:layout_alignParentBottom="true"
        />

</RelativeLayout>

列表項(xiàng)布局文件 line.xml 的內(nèi)容:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ImageView
        android:layout_width="50dp"
        android:layout_height="50dp"
        android:id="@+id/icon"
        />

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/file_name"
        android:layout_marginStart="20dp"
        />

</LinearLayout>

主程序文件的內(nèi)容如下:

package com.toby.personal.testlistview;

import android.os.Bundle;
import android.os.Environment;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.view.View;
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 java.io.File;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

public class MainActivity extends AppCompatActivity {

    final private static String TAG = "Toby_Test";

    ListView listView;
    TextView textView;
    File currentParent;
    File[] currentFiles;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        listView = (ListView) findViewById(R.id.list);
        textView = (TextView) findViewById(R.id.path);

        Log.d(TAG, Environment.getExternalStorageDirectory().getPath());
        File root = new File("/mnt/");

        if (root.exists()) {
            currentParent = root;
            currentFiles = root.listFiles();
            inflateListView(currentFiles);
        }

        listView.setOnItemClickListener(new AdapterView.OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
                if (currentFiles[position].isFile()) {
                    return;
                }

                File[] tmp = currentFiles[position].listFiles();
                if (tmp == null || tmp.length == 0) {
                    Toast.makeText(MainActivity.this, "Current path is null.",
                            Toast.LENGTH_SHORT).show();
                } else {
                    currentParent = currentFiles[position];
                    currentFiles = tmp;
                    inflateListView(currentFiles);
                }
            }
        });

        Button parent = (Button) findViewById(R.id.parent);
        parent.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                try {
                    if (!currentParent.getCanonicalPath().equals("/mnt/")) {
                        currentParent = currentParent.getParentFile();
                        currentFiles = currentParent.listFiles();
                        inflateListView(currentFiles);
                    }
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        });
    }

    private void inflateListView(File[] files) {

        if (files == null || files.length <= 0) {
            return;
        }

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

        for (File file : files) {
            Map<String, Object> listItem = new HashMap<>();
            listItem.put("icon", file.isDirectory() ? R.drawable.folder : R.drawable.file);
            listItem.put("fileName", file.getName());
            listItems.add(listItem);
        }

        SimpleAdapter simpleAdapter = new SimpleAdapter(this, listItems, R.layout.line,
                new String[]{"icon", "fileName"}, new int[]{R.id.icon, R.id.file_name});

        listView.setAdapter(simpleAdapter);

        try {
            textView.setText(String.format("Current Path: %s", currentParent.getCanonicalPath()));
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

}

運(yùn)行效果:

顯示效果
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末锐墙,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌统锤,老刑警劉巖媒惕,帶你破解...
    沈念sama閱讀 206,214評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件源梭,死亡現(xiàn)場(chǎng)離奇詭異伊磺,居然都是意外死亡斧拍,警方通過(guò)查閱死者的電腦和手機(jī)蜀备,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門关摇,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人碾阁,你說(shuō)我怎么就攤上這事输虱。” “怎么了脂凶?”我有些...
    開(kāi)封第一講書人閱讀 152,543評(píng)論 0 341
  • 文/不壞的土叔 我叫張陵宪睹,是天一觀的道長(zhǎng)愁茁。 經(jīng)常有香客問(wèn)我,道長(zhǎng)亭病,這世上最難降的妖魔是什么鹅很? 我笑而不...
    開(kāi)封第一講書人閱讀 55,221評(píng)論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮罪帖,結(jié)果婚禮上促煮,老公的妹妹穿的比我還像新娘。我一直安慰自己整袁,他們只是感情好菠齿,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,224評(píng)論 5 371
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著坐昙,像睡著了一般泞当。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上民珍,一...
    開(kāi)封第一講書人閱讀 49,007評(píng)論 1 284
  • 那天襟士,我揣著相機(jī)與錄音,去河邊找鬼嚷量。 笑死陋桂,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的蝶溶。 我是一名探鬼主播嗜历,決...
    沈念sama閱讀 38,313評(píng)論 3 399
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼抖所!你這毒婦竟也來(lái)了梨州?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書人閱讀 36,956評(píng)論 0 259
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤田轧,失蹤者是張志新(化名)和其女友劉穎暴匠,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體傻粘,經(jīng)...
    沈念sama閱讀 43,441評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡每窖,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,925評(píng)論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了弦悉。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片窒典。...
    茶點(diǎn)故事閱讀 38,018評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖稽莉,靈堂內(nèi)的尸體忽然破棺而出瀑志,到底是詐尸還是另有隱情,我是刑警寧澤,帶...
    沈念sama閱讀 33,685評(píng)論 4 322
  • 正文 年R本政府宣布劈猪,位于F島的核電站昧甘,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏岸霹。R本人自食惡果不足惜疾层,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,234評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望贡避。 院中可真熱鬧痛黎,春花似錦、人聲如沸刮吧。這莊子的主人今日做“春日...
    開(kāi)封第一講書人閱讀 30,240評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)杀捻。三九已至井厌,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間致讥,已是汗流浹背仅仆。 一陣腳步聲響...
    開(kāi)封第一講書人閱讀 31,464評(píng)論 1 261
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留垢袱,地道東北人墓拜。 一個(gè)月前我還...
    沈念sama閱讀 45,467評(píng)論 2 352
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像请契,于是被迫代替她去往敵國(guó)和親咳榜。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,762評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容

  • Android 自定義View的各種姿勢(shì)1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 171,501評(píng)論 25 707
  • ¥開(kāi)啟¥ 【iAPP實(shí)現(xiàn)進(jìn)入界面執(zhí)行逐一顯】 〖2017-08-25 15:22:14〗 《//首先開(kāi)一個(gè)線程爽锥,因...
    小菜c閱讀 6,358評(píng)論 0 17
  • 大一下學(xué)期和大二上學(xué)期都已經(jīng)過(guò)去了涌韩,我在新的一年想著過(guò)去,大一上學(xué)期我嘗試著讀書氯夷,多待圖書館臣樱,認(rèn)識(shí)了Ishan,我...
    chengrunsha閱讀 127評(píng)論 0 0
  • 我不止一次思考,甚至迷茫與生活秸仙。不知道生活到底是什么樣子?看多了身邊人的醬醋油茶桩盲,卻又向往朋友圈里的灑脫人生寂纪。 生...
    桔子酸閱讀 201評(píng)論 0 1
  • 不斷走出你的舒適區(qū) 這是梁超文持續(xù)寫作第46篇文章,如果讓你變身超級(jí)賽亞人,得到一點(diǎn)啟發(fā)和力量捞蛋,歡迎打賞轉(zhuǎn)發(fā)和評(píng)論...
    梁超文閱讀 828評(píng)論 0 1