Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要使用简单的列表项在列表视图中显示图像和文本。是否可以在文本视图中显示图像?
您可以创建一个 spannableString 并将您的图像放置在 TextView 中您想要的位置。或者你可以使用
ImageSpan is = new ImageSpan(context, resId); text.setSpan(is, index, index + strLength, 0);
看这里:如何在 Android 的 TextView 中显示图像?