我创建了一个可重用的自定义组件(一个带有画布绘制位图的自定义视图),它是一个可用于任何东西(音量控制/评级系统)的滑块。问题是我需要监控它的进度,比如seekbar onProgressChanged。
我不知道我会实施这个。我无法使用搜索栏并尝试重新使用它,我需要使用自定义组件..
有人对此有任何想法吗?
我的布局如下:
所以我需要监控我的滑动图像的移动并尝试从中计算某种进展,或者有没有更简单的方法?
对此的任何输入将不胜感激,这是我在自定义组件方面的第一次努力
编辑
这是我的 xml 布局的外观:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="200dp"
android:id = "@+id/slider1"
android:layout_alignParentTop="true">
<com.cs.customSlider.slider.app.sliderView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/sliderView"
sliderView:diagonalSlide="false"
sliderView:translateAxisX="false"/>
<ImageView
android:id="@+id/slider_frame"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/slider_frame"
android:layout_centerHorizontal="true">
</ImageView>
</RelativeLayout>