【发布时间】:2014-08-04 15:15:45
【问题描述】:
我正在尝试在导航抽屉的自定义适配器中设置文本视图的文本外观。我想让一些项目的文本比其他项目小(比如谷歌音乐的导航抽屉)。所以我在 getView 方法中有一个 if 语句,我想对列表项使用默认的 android 样式。
我知道我可以做到以下几点:
textView.setTextAppearance(getContext(), android.R.style.TextAppearance_Small);
但我找不到您可以在 xml 中设置的 textAppearanceListItem 属性的 android.R.style 值:
android:textAppearance="?android:attr/textAppearanceListItem"
【问题讨论】: