我按如下方式配置我的风格:
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimary</item>
<item name="colorAccent">@color/black</item>
</style>
在我的模拟器和我的Note 8中,我看到SeekBars正确地用黑色绘制。 但在我的旧Galaxy S5中,我看到它们呈蓝绿色。
搜索栏声明在这里,只是位置信息:
<SeekBar
android:id="@+id/percentage_seekbar"
android:layout_width="0dp"
android:layout_height="26dp"
android:layout_marginBottom="8dp"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintStart_toStartOf="parent" />
这就是SeekBar的样子,而不是黑色:
这就是我期望它以及我如何在模拟器和注释8中看到它:
这是我的清单文件的内容:
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme"
我不知道还有什么可以解决的问题......这是API版本的问题吗?