Android開発初心者です。
以下のコードで、画像のようなエラーが出てしまいます。

super(context, R.layout.top_listview, items);

の部分を修正すればいいのかと思うのですが、どのようにしたらいいのでしょうか?
お知恵を頂けますと幸いです。

画像の説明をここに入力

public class TopListViewAdapter extends ArrayList<TopElement> implements ListAdapter {
    public TopListViewAdapter(Context context, ArrayList<TopElement> items) {
        super(context, R.layout.top_listview, items);
    }
}