我需要在我的SeekBar Progress属性发生变化时通知! 我创建了我的SeekBar并覆盖progress属性! 但它不起作用!
public class MySeekBar : SeekBar,INotifyPropertyChanged
{
public MySeekBar(Context context) : base(context)
{
}
public override int Progress
{
get => base.Progress;
set { base.Progress = value; OnPropertyChange(); }
}
public event PropertyChangedEventHandler PropertyChanged;
private void OnPropertyChange([CallerMemberName] string propName = null)
{
var change = PropertyChanged;
if (change != null)
{
PropertyChanged(this, new PropertyChangedEventArgs(propName));
}
}
}
答案 0 :(得分:0)
项目中没有任何东西加起来。如果您正在使用布局,那么您可能忘记将SeekBar类更改为MySeekBar?另外,你缺少一些布局所需的构造函数。至于实现,我可能不会覆盖该属性,因为下面的工作正常。
public class MySeekBar : SeekBar, INotifyPropertyChanged
{
public MySeekBar(Context context) : base(context)
{
Initialize();
}
public MySeekBar(Context context, IAttributeSet attrs) : base (context,attrs)
{
Initialize();
}
public MySeekBar(Context context, IAttributeSet attrs, int defStyle) : base (context, attrs, defStyle)
{
Initialize();
}
private void Initialize()
{
this.ProgressChanged += (sender, e) =>
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs("Progress"));
}
public event PropertyChangedEventHandler PropertyChanged;
}
在布局中添加(基础命名空间是SeekB,因此控件应该是seekb.MySeekBar)。
<?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">
<seekb.MySeekBar
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/seekBar1" />
</LinearLayout>