我需要在我的SeekBar
行的ListView
上绘制叠加图像。这并不难做到,这个问题中的代码通过在位图中绘制行号并将其作为可绘制的进度来实现。
我遇到的问题是这只能运行一次。当视图被回收用于另一行时,drawable就会消失。
前10个观点(位置0到9)起作用。之后的一切都失败了。没有错误或异常。 Android只是停止绘制该图层。如果我向下滚动然后再向上,它们都不起作用(因为它们都被回收了)。
如何让Android始终绘制此叠加图像?我想我需要执行某种缓存或失效,但我只是不知道它到底是什么。
public class ViewTest extends ListActivity {
// replace the progress drawable with my custom drawable
public void setSeekBarOverlay(SeekBar seekBar, String overlayText) {
Bitmap bitmap = Bitmap.createBitmap(100, 12, Bitmap.Config.ARGB_4444);
new Canvas(bitmap).drawText(overlayText, 10, 12, new Paint());
Drawable d = new BitmapDrawable(bitmap);
((LayerDrawable) seekBar.getProgressDrawable()).setDrawableByLayerId(android.R.id.progress, d);
}
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
setListAdapter(new ListAdapter() {
// return the view. Recycle them if possible.
public View getView(int pos, View v, ViewGroup vg) {
if (v == null) {
v = View.inflate(ViewTest.this, R.layout.seekbar, null);
}
String s = String.valueOf(pos);
((TextView) v.findViewById(android.R.id.text1)).setText(s);
setSeekBarOverlay((SeekBar) v.findViewById(R.id.seekbar), s);
return v;
}
... cut ...
});
}
}
main.xml中
<?xml version="1.0" encoding="utf-8"?>
<ListView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
seekbar.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:minHeight="?android:attr/listPreferredItemHeight">
<TextView
android:id="@android:id/text1"
android:textAppearance="?android:attr/textAppearanceLarge"
android:layout_width="0dp"
android:layout_weight="1"
android:gravity="center"
android:layout_height="wrap_content" />
<SeekBar
android:id="@+id/seekbar"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content" />
</LinearLayout>
答案 0 :(得分:4)
这是一个很难的,我认为不会有太大的流量,所以我会在找到解决方案后自己回答。
另一个问题/答案,Android ProgressBar.setProgressDrawable only works once?,让我走到了一半,但解决方案对我不起作用。在另一个问题中,代码试图替换整个progressDrawable(setProgressDrawable()
)。我不是在这里做的,因为我只是更新现有progressDrawable中的一个图层。经过一些游戏,用类似的方法,我发现了一些有用的东西。您必须获取正在更新的drawable的边界(在本例中为其中一个图层)并稍后设置边界。
似乎是平台中的一个错误,但这种解决方法似乎使它工作。希望有一天能帮助别人。
public void setSeekBarOverlay(SeekBar seekBar, String overlayText) {
LayerDrawable layerDrawable = (LayerDrawable) seekBar.getProgressDrawable();
Drawable overlayDrawable = layerDrawable.findDrawableByLayerId(android.R.id.progress);
Rect bounds = overlayDrawable.getBounds();
Bitmap bitmap = Bitmap.createBitmap(100, 12, Bitmap.Config.ARGB_4444);
new Canvas(bitmap).drawText(overlayText, 10, 12, new Paint());
overlayDrawable = new BitmapDrawable(bitmap);
overlayDrawable.setBounds(bounds);
layerDrawable.setDrawableByLayerId(android.R.id.progress, overlayDrawable);
}