关于如何更改微调器中条目的“文本大小”,我已经阅读了堆栈溢出中的各种帖子,但它们似乎都没有帮助。
我正在为 Galaxy Tab 10.1“模板化”我的主要布局。所以我希望我的物品显示得更大,例如在手机上。
好的,我检查了一下,90% 的人都在谈论 android:textSize="....." 但它对我不起作用(???)我不明白!
这是我的 xml 定义:
<Spinner
android:id="@+id/spinner1"
android:layout_width="fill_parent"
android:layout_height="75dp"
android:textSize="30sp"
android:textAppearance="?android:attr/textAppearanceLarge"
android:drawSelectorOnTop="true"
android:contentDescription="@string/test"
android:prompt="@string/choose_one"
tools:listitem="@android:layout/simple_spinner_item"
/>
如您所见,我添加了 textSize 标签,甚至 textAppearance ......没有任何积极的结果......项目保持小字体,我猜是默认字体......
有想法吗?谢谢。