ArrayAdapter无法正常工作,仅显示1个项目

时间:2019-04-01 15:59:18

标签: java android xml android-arrayadapter

我最近了解了ArrayAdapters,并正在尝试在当前应用程序中使用ArrayAdapters。我使用了以前学习的代码,但是做错了。除了显示完整列表外,列表中仅显示1个。我不确定要使它显示完整列表是我所缺少的。

我的xml如下:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity"
    android:background="#6002EE">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        style="@style/PageTitle"
        android:text="@string/songs"
        android:id="@+id/title"/>

    <ScrollView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/title">

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

        </ListView>

    </ScrollView>
...
</RelativeLayout>

我的SongAdapter看起来像这样:

    public class SongAdapter extends ArrayAdapter {

        public SongAdapter(Context context, ArrayList pWords) {
            super(context,0, pWords);
        }

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

            // Check if the existing view is being reused, otherwise inflate the view
            View listItemView = convertView;

            if(listItemView == null) {
                listItemView = LayoutInflater.from(getContext()).inflate(
                        R.layout.list_item, parent, false);
            }

            Song my_word = (Song) getItem(position);
            TextView songTextView = listItemView.findViewById(R.id.song);
            songTextView.setText(my_word.getSongTitle());
            TextView artistTextView = listItemView.findViewById(R.id.artist);
            artistTextView.setText(my_word.getArtist());

            return listItemView;

        }
    }

我只是假设这是帮助我的必要条件。我很新。我确实阅读了ArrayAdapters上的许多页面,许多其他问题似乎比这还复杂。我觉得我可能缺少一些代码?

2 个答案:

答案 0 :(得分:0)

删除滚动视图布局,唯一的子级是列表视图本身,因此不需要它。

答案 1 :(得分:0)

显示main_activity代码,我不能评论这就是为什么我将其编写为答案。正如您所说的那样,我认为您只在main_activity类中添加了一组列表。