Hello,

I have a xml of AbsoluteLayout :

<AbsoluteLayout
  xmlns:android="http://schemas.android.com/apk/res/android";
  android:id="@+id/MeasureAbsLayout"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">

        <ImageView android:id="@+id/MeasureImageView"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent">
        </ImageView>

        <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">
                <Button android:text="Previous"
                        android:layout_height="wrap_content"
                        android:id="@+id/MeasurePrev"
                        android:layout_alignParentBottom="true"
                        android:layout_width="wrap_content">
                </Button>

                <Button android:text="Result"
                        android:layout_height="wrap_content"
                        android:id="@+id/MeasureResult"
                        android:layout_alignParentRight="true"
                        android:layout_alignParentBottom="true"
                        android:layout_width="wrap_content">
                </Button>
        </RelativeLayout>
</AbsoluteLayout>

I want to implement onScrollChanged event of AbsoluteLayout in
Activity class. How can i implement this?

Regards,
Nishant Shah

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to