首先我想说这不是为自定义微调器样式创建相同的线程。在我的应用程序中,我喜欢在微调器上显示一个字符串和一个图像但是当我浏览文档时,我注意到只有以下构造函数。
ArrayAdapter(Context context, int textViewResourceId)
Constructor
ArrayAdapter(Context context, int resource, int textViewResourceId)
Constructor
ArrayAdapter(Context context, int textViewResourceId, T[] objects)
Constructor
ArrayAdapter(Context context, int resource, int textViewResourceId, T[] objects)
Constructor
ArrayAdapter(Context context, int textViewResourceId, List<T> objects)
Constructor
ArrayAdapter(Context context, int resource, int textViewResourceId, List<T> objects)
Constructor
所以我最初可以有一个对象。那可以是字符串,图像等。
但我想保留字符串和图像。
我知道如何在旋转器展开后显示图像和字符串。
我想我的问题很清楚。有没有办法处理这个?