Logcat错误:ListView中的“AdapterView”中不支持“addView(View,LayoutParams)”

时间:2011-01-01 23:04:38

标签: android listview adapter android-adapterview

我正在为Android做一个应用程序,我需要的是它显示SD卡中所有文件和目录的列表,它必须能够在不同的目录中移动。我找到了a good tutorial in anddev。我修改了一些内容,因此应用程序在SD卡中移动而不在Android根目录中,但其余部分基本相同。

这是我的活动的xml文件:

    <?xml version="1.0" encoding="utf-8"?>
<ListView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@id/android:list"       
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <TextView 
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" />
</ListView>

这是活动的代码:

    import hackreatorz.cifrador.R;

import java.io.File;
import java.util.ArrayList;

import android.app.ListActivity;
import android.content.res.Configuration;
import android.os.Bundle;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.ListView;
import android.widget.Toast;

public class ArchivosSD extends ListActivity {

    private ArrayList<String> directoryEntries = new ArrayList<String>();
    private File currentDirectory = new File("/sdcard/");

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        browseToSD();
    }

    @Override
    public void onConfigurationChanged(Configuration newConfig) {
        super.onConfigurationChanged(newConfig);
    }

    private void browseToSD() {
        browseTo(new File("/sdcard/"));
    }

    private void upOneLevel() {
         if(this.currentDirectory.getParent() != null)
             this.browseTo(this.currentDirectory.getParentFile());
    }

    private void browseTo(final File directory) {
        if (directory.isDirectory()) {
                this.currentDirectory = directory;
                fill(directory.listFiles());
        } else {
                Toast.makeText(ArchivosSD.this, this.directoryEntries.get(this.getSelectedItemPosition()), Toast.LENGTH_SHORT).show();
                }
    }

    private void fill(File[] files) {
        this.directoryEntries.clear();
        this.directoryEntries.add(getString(R.string.current_dir));
        if(this.currentDirectory.getParent() != null)
            this.directoryEntries.add(getString(R.string.up_one_level));
            int currentPathStringLength = (int) this.currentDirectory.getAbsoluteFile().length();
            for (File file : files) {
                this.directoryEntries.add(file.getAbsolutePath().substring(currentPathStringLength));           
            }
        setListAdapter(new ArrayAdapter<String>(this, R.layout.archivos_sd, this.directoryEntries));
    }   

    @Override
    protected void onListItemClick(ListView l, View v, int position, long id) {
        int selectionRowID = (int) this.getSelectedItemPosition();
        String selectedFileString = this.directoryEntries.get(selectionRowID);
        if (selectedFileString.equals(".")) {
            this.browseToSD();
        } else if(selectedFileString.equals("..")) {
            this.upOneLevel();
        } else {
            File clickedFile = null;
            clickedFile = new File(this.currentDirectory.getAbsolutePath() + this.directoryEntries.get(selectionRowID));
            if(clickedFile != null)
                this.browseTo(clickedFile);
            }
    }
}

我在Eclipse中没有出现任何错误,但在手机上运行应用程序时会收到强制关闭,当我查看Logcat时,我会看到以下内容:

01-01 23:30:29.858:ERROR / AndroidRuntime(14911):致命异常:主要 01-01 23:30:29.858:ERROR / AndroidRuntime(14911):java.lang.UnsupportedOperationException:AdapterView中不支持addView(View,LayoutParams)

我不知道该怎么做,我在谷歌中查了一下,但我没有找到任何东西,而且我在stackoverflow上做了同样的事情。这是我在Java和Android中的第一个应用程序,所以我是一个真正的n00b,如果答案就在那里,我不理解它,所以如果你能解释我应该做些什么来解决这个错误以及为什么我真的很感激。

提前感谢所有事情。

5 个答案:

答案 0 :(得分:68)

对于遇到此问题且在ArrayAdapter的{​​{1}}中夸大了布局的其他人,请将getView参数设置为parent,如null中所示

答案 1 :(得分:63)

经验法则

你应该总是尝试在膨胀View时传入父级,否则框架将无法识别用于该膨胀视图的布局参数。

处理异常的正确方法是将 false 作为第三个参数,此标志指示是否应直接添加视图是否通过了容器。

对于适配器,适配器本身将在您从getview方法返回视图后添加视图:

  

view = inflater.inflate(R.layout.mylayout,parent, false );

BaseAdapter 示例来自just-for-us DevBytes

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        View result = convertView;
        if (result == null) {
            result = mInflater.inflate(R.layout.grid_item, parent, false);
        }

        // Try to get view cache or create a new one if needed
        ViewCache viewCache = (ViewCache) result.getTag();
        if (viewCache == null) {
            viewCache = new ViewCache(result);
            result.setTag(viewCache);
        }

        // Fetch item
        Coupon coupon = getItem(position);

        // Bind the data
        viewCache.mTitleView.setText(coupon.mTitle);
        viewCache.mSubtitleView.setText(coupon.mSubtitle);
        viewCache.mImageView.setImageURI(coupon.mImageUri);

        return result;
    }

CursorAdapter 示例:

    @Override
    public View newView(final Context context, final Cursor cursor, final ViewGroup root)          {
        return mInflater.inflate(R.layout.list_item_ticket, root, false);
    }

有关视图通胀的更多信息,请参阅此article

答案 2 :(得分:14)

在创建像您这样的 ArrayAdapter 时,ArrayAdapter需要一个仅包含TextView的布局资源 尝试使用以下命令更改ArrayAdapter创建:

setListAdapter(new ArrayAdapter<String>(this, 
      android.R.layout.simple_list_item_1, 
      this.directoryEntries));

看看它是否有效。

答案 3 :(得分:1)

我的问题是这样的:我在arrayAdapter中重写了getView。然后当我夸大视图时,我忘记将 attach设置为root到false ,这导致了此异常。

这是必须要做的:

convertView = LayoutInflater.from(getContext()).inflate(R.layout.market_search_product_view, parent,false);

问题解决后!

答案 4 :(得分:0)

从XML文件中的ListView删除TextView