4

我对 android 有点陌生,正在尝试找出这些自定义列表适配器。所以我有一个扩展 BaseListActivity 的活动和一个类似的函数:

public void inflate(){

    ArrayList<String> words = new ArrayList<String>();
    orders.add("hello");
    orders.add("world");

    wordsList = (ListView) findViewById(R.id.list);

    WordsAdapter adapter = new WordsAdapter(this, R.layout.single_word_container_item,words);
    wordsList.setAdapter(adapter);

然后我实现我的自定义 WordsAdapter 如下:

public class WordsAdapter extends ArrayAdapter<String>{
    public Context context;
    public ArrayList<String> _words;

    //not sure the purpose of 'a' here
    public WordsAdapter(Context context, int a, ArrayList<String> words) {
        super(context, a, words);
        _words = words;
        this.context = context;
    }


    @Override
    public View getView(int position, View convertView, ViewGroup parent) {

        LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        View v = inflater.inflate(R.layout.single_word_container_item, null);
        TextView wordName = (TextView) findViewById(R.id.wordName);
        if(!_words.isEmpty()){
            wordName.setText(_word.remove(0));
        }

        return v;
    }

}

从日志中我可以看出,永远不会调用 getView。'single_word_container_item' 只是一个 xml 文件,其布局我想多次膨胀。我不确定整个过程 - 我认为您在列表视图上设置了一个适配器,然后在该适配器中您负责显示每次实际显示的内容,那么我在这里做错了什么?目前,我在设置适配器时遇到了一个空指针异常,但之前它不会显示任何内容。日志显示它正在进入 WordsAdapter 构造函数,但随后死亡。提前感谢您的任何建议。

编辑:所以在我的 xml 中识别列表视图似乎有问题。

如果您使用:

ListView
android:id="@+id/android:list" OR android:id="@id/android:list"
android:layout_width="match_parent"
android:layout_height="wrap_content" 
ListView

使用时错误是空指针异常

但如果您将其定义为:

ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content" 
ListView

您收到错误消息:07-15 19:18:50.240: E/AndroidRuntime(29842): Caused by: java.lang.RuntimeException: Your content must have a ListView its id attribute is 'android.R.id.list'

编辑:所以显然你不能扩展 listactivity 并调用 setcontentview()。由于我需要在列表视图之上的视图,我不想扩展列表活动,而是调用 setcontentview 并仅通过其 ID 引用列表。

现在我的错误是:

java.lang.IllegalStateException:适配器的内容已更改,但 ListView 没有收到通知。确保适配器的内容不是从后台线程修改的,而只是从 UI 线程修改的。

我尝试在 setAdapter() 之后调用 adapter.notifyDataSetChanged() ,但这似乎不起作用。我应该在其他地方调用它吗?

4

2 回答 2

8

您的 getView() 方法中有错误:

@Override
public View getView(int position, View convertView, ViewGroup parent) {

    LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    View v;
    if (convertView == null) {
       v = inflater.inflate(R.layout.single_word_container_item, null); 
    } else {
       v = convertView;
    }
    TextView wordName = (TextView) v.findViewById(R.id.wordName);

    // questionable logic
    if(!_words.isEmpty()){
        wordName.setText(_word.remove(0));
    }

    return v;
}

必须在行的视图上调用 findViewById()。

再看看上面有问题的逻辑,你到底想干什么?如果您直接从适配器中删除列表视图对象,这将无法正常工作。

于 2012-07-15T22:14:53.517 回答
0

只需使用充气 val dialog = BottomSheetDialog(context,R.style.BottomSheetTheme) val view = inflate(context,R.layout.otpsent1layout,null) dialog.setContentView(view) dialog.show()

于 2021-01-16T12:02:07.033 回答