水平滚动视图指示器android

时间:2015-12-02 09:24:06

标签: android horizontalscrollview viewpagerindicator

我在Android中使用Horizo​​ntal Scrollview在我的应用程序中显示按钮(我需要使用水平滚动视图。)

enter image description here

通过调用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>

这样,

enter image description here

如何设置指标(它们只是用于画布的图像视图)。这有可能吗?

感谢

0 个答案:

没有答案