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

ArrayAdapter not working properly, displaying only 1 item

我最近了解了 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 的页面,许多其他问题似乎比这更复杂。我觉得我可能缺少一些代码?

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

显示 main_activity 代码,我无法发表评论,这就是我将其写为答案的原因。正如你所说,它显示了一个,我认为你只是在 main_activity class.

中添加了一组列表