我有一个带有自定义文本视图的微调器,如下面的代码所示:
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:singleLine="true"
android:textSize="16sp"
android:ellipsize="end"
android:gravity="center_vertical">
</TextView>
我的问题是 16sp 的文本大小也适用于所选项目(提示中的文本),并且对于微调器来说太大(它不适合微调器),如果我将 textSize 更改为 11sp 然后项目上列表将太小。如何仅更改所选项目的大小?