我在Android中使用Horizontal Scrollview在我的应用程序中显示按钮(我需要使用水平滚动视图。)
通过调用srollview的某些方法,我想强制它改变imageView的背景颜色(或可绘制的)。
这是我的示例代码。
activity_main(我已设置滚动条="无")
$.ajax({
url: Routing.generate('new_User_ajax', {id: Ownerid }),
MainActivity
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<HorizontalScrollView
android:scrollbars="none"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:id="@+id/buttonContainer"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</LinearLayout>
</HorizontalScrollView>
<LinearLayout
android:id="@+id/indicatorContainer"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</LinearLayout>
</RelativeLayout>
这样,
如何设置指标(它们只是用于画布的图像视图)。这有可能吗?
感谢