我尝试通过以下链接选择文件 http://www.dreamincode.net/forums/topic/190013-creating-simple-file-chooser/
但是,我收到错误“您的内容必须有一个 id 属性为 'android.R.id.list' 的 ListView”
我已经用谷歌搜索了这个错误,我需要在 xml 文件中获取一个 listview 标记。但是,上面的示例没有它,它似乎运行良好。
虽然我没有在主页触发文件选择器,但我认为我的代码与它没有太大区别。你能帮我看看有什么办法可以解决这个问题吗?
文件视图.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="wrap_content">
<TextView android:id="@+id/fd_text1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:singleLine="true" android:textStyle="bold" android:layout_marginTop="5dip"></TextView>
<TextView android:id="@+id/fd_text2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="10dip"></TextView>
</LinearLayout>
文件选择器.java
public class filechooser extends ListActivity{
private fileArrayAdapter adapter;
private File curDir;
@Override
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.file_view);
curDir = new File("/sdcard/");
fill(curDir);
}
public void fill(File f){
File[] dirs = f.listFiles();
this.setTitle("Current Dir: "+f.getName());
List<fc_option>dir = new ArrayList<fc_option>();
List<fc_option>fls = new ArrayList<fc_option>();
try{
for (File ff: dirs){
if (ff.isDirectory())
dir.add(new fc_option(ff.getName(), "Folder", ff.getAbsolutePath()));
else
fls.add(new fc_option(ff.getName(), "File Size: " + ff.length(), ff.getAbsolutePath()));
}
}catch (Exception e){
}
Collections.sort(dir);
Collections.sort(fls);
dir.addAll(fls);
if (!f.getName().equalsIgnoreCase("sdcard"))
dir.add(0,new fc_option("..","Parent Directory", f.getParent()));
adapter = new fileArrayAdapter(this, R.layout.file_view, dir); //get problems
this.setListAdapter(adapter);
}
//@Override
protected void onListItemClick(ListView l, View v, int position, long id){
super.onListItemClick(l,v,position, id);
fc_option o = adapter.getItem(position);
if (o.getData().equalsIgnoreCase("folder") || o.getData().equalsIgnoreCase("parent directory")){
curDir = new File(o.getPath());
fill(curDir);
}else{
onFileClick(o);
}
}
private void onFileClick(fc_option o){
Toast.makeText(this,"File Click"+o.getName(), Toast.LENGTH_SHORT).show();
}
}
fileArrayAdapter 与链接完全相同。
感谢您的帮助