我在android中制作文件浏览器。所以在列表视图中我显示了所有文件夹和文件,但目前所有文件夹都有相同的图标。我想要文件夹和目录的不同图标。此外,当我点击一个文件,我想看到可以打开它的应用程序列表。目前我可以在点击时打开一个目录,当点击一个文件时,我显示一个无法打开的吐司。 已经想过很多东西但仍然无法弄清楚 任何帮助表示赞赏。提前致谢。 这是我的活动:
package com.rrawat.fileexplorer;
import android.app.ActionBar;
import android.app.ListActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.Toast;
import java.io.File;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
public class ListFileActivity extends ListActivity {
private String path;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_list_files);
// Use the current directory as title
path = "/sdcard";
if (getIntent().hasExtra("path")) {
path = getIntent().getStringExtra("path");
}
setTitle(path);
// Read all files sorted into the values-array
List values = new ArrayList();
File dir = new File(path);
if (!dir.canRead()) {
setTitle(getTitle() + " (inaccessible)");
}
String[] list = dir.list();
if (list != null) {
for (String file : list) {
if (!file.startsWith(".")) {
values.add(file);
}
}
}
Collections.sort(values);
// Put the data into the list
this.setListAdapter(new ArrayAdapter<String>(this,R.layout.mylist,R.id.Itemname,values));
/*ArrayAdapter adapter = new ArrayAdapter(this,
android.R.layout.simple_list_item_2, android.R.id.text1, values);
setListAdapter(adapter);*/
ActionBar actionBar = getActionBar();
actionBar.setDisplayHomeAsUpEnabled(true);
}
@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
String filename = (String) getListAdapter().getItem(position);
if (path.endsWith(File.separator)) {
filename = path + filename;
} else {
filename = path + File.separator + filename;
}
if (new File(filename).isDirectory()) {
Intent intent = new Intent(this, ListFileActivity.class);
intent.putExtra("path", filename);
startActivity(intent);
} else {
Toast.makeText(this, filename + " is not a directory", Toast.LENGTH_LONG).show();
}
}
}
我的xmls:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
mylist.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal" >
<ImageView
android:id="@+id/icon"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_marginBottom="5dp"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:layout_marginTop="5dp"
android:src="@drawable/folder" />
<TextView
android:id="@+id/Itemname"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20sp"
android:paddingTop="5dp"/>
</LinearLayout>
答案 0 :(得分:2)
您可以使用它来确定文件是否是目录。
boolean isDir = new File(path).isDirectory();
答案 1 :(得分:1)
你必须创建一个自定义适配器,然后覆盖getView()
,如Bojan Kseneman所说。
目前,您使用的是ArrayAdapter
的默认实现,但您可以创建一个extends ArrayAdapter
的类,并将其定义为:
public class FilesAndFoldersAdapter extends ArrayAdapter<String> {
public FilesAndFoldersAdapter(Context context, ArrayList<String> values) {
super(context, 0, values);
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
// Get the data item for this position
String filePath = getItem(position);
// Check if an existing view is being reused, otherwise inflate the view
if (convertView == null) {
convertView = LayoutInflater.from(getContext()).inflate(R.layout.mylist, parent, false);
}
// Lookup view for data population
TextView tvName = (TextView) convertView.findViewById(R.id.Itemname);
ImageView ivImage = (ImageView) convertView.findViewById(R.id.icon);
// Populate the data into the template view using the data object
tvName.setText(filePath);
if (new File(filePath).isDirectory()) {
ivImage.setImageResouce(R.drawable.folder_icon);
} else {
ivImage.setImageResouce(R.drawable.file_icon);
}
// Return the completed view to render on screen
return convertView;
}
}
此代码的重要部分是检查文件是目录还是文件,然后使用ImageView上的相应图标。
创建自定义适配器类之后,您只需将其设置为ListView的适配器,如下所示:
setListAdapter(new FilesAndFoldersAdapter(this, values));