我正在尝试来自1的微调器:http://www.ahotbrew.com/android-dropdown-spinner-example/。
代码正在运行但结果不是我想要的。结果如下:
但我想要下面的微调器:
别忘了看附件。
Min sdk 15,编译sdk 23.
答案 0 :(得分:0)
我的问题通过在styles.xml中使用自定义主题来解决:
main.xml中:
<Spinner
android:id="@+id/spThemes"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:entries="@array/theme_array"
android:spinnerMode="dropdown"
style="@style/spinner_style"
/>
Styles.xml:
<style name="spinner_style" >
<item name="android:theme">@android:style/Theme.Holo</item>
<item name="android:layout_marginLeft">10dp</item>
<item name="android:layout_marginRight">10dp</item>
<item name="android:layout_marginBottom">10dp</item>
<item name="android:paddingLeft">8dp</item>
<item name="android:paddingTop">5dp</item>
<item name="android:paddingBottom">5dp</item>
<!-- Customize your theme here. -->
</style>