Android SeekBar 旧进度未删除

Android SeekBar old progress not removed

我的 Android SeekBar 有问题,我在栏的每个位置按一个,栏移动到这个位置,但它没有删除旧位置,所以我得到了一个奇怪的重影效果在图像中看到。

有人以前看过这个吗?或者知道它可能是什么?

我的布局文件如下

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent">

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/opt_back_button"
        android:text="@string/opt_back_button_text"/>

    <SeekBar
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/opt_test_seek_bar"
        android:layout_margin="10dp"
        android:max="100"
        android:progress="0"
        android:secondaryProgress="0"/>

</LinearLayout>

我的主要 Java 文件是

import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.widget.SeekBar;
import android.widget.Toast;

public class OptionsMenuActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);

    // set the content view to the options menu
    setContentView(R.layout.options_menu);

    // get string from intent that started this activity
    Intent source_intent = getIntent();
    String message = source_intent.getStringExtra("games.longrun.toroidtussle.MESSAGE");

    // display the message as a toast
    Toast test_toast = Toast.makeText(getApplicationContext(), message, Toast.LENGTH_SHORT);
    test_toast.show();

    // initialise the listeners for this activity
    initialise_listeners();
}

    private void initialise_listeners()
    {
        // get reference to the seekbar
        SeekBar test_bar = (SeekBar)findViewById(R.id.opt_test_seek_bar);

        // set listener for seek bar events
        test_bar.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {

            @Override
            public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {

            }

            @Override
            public void onStartTrackingTouch(SeekBar seekBar) {

            }

            @Override
            public void onStopTrackingTouch(SeekBar seekBar) {
                int progress = seekBar.getProgress();

                Toast.makeText(OptionsMenuActivity.this, "Progress = " + progress, Toast.LENGTH_SHORT).show();
            }
        });
    }
}

我无意中发现了问题所在。

我设置了一个样式,其中包含

<item name="android:windowBackground">@null</item>

我改成了

<item name="android:windowBackground">@color/black_overlay</item>