我在ScrollView中有一个FrameLayout,如下所示:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ffffff"
android:orientation="vertical">
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/scrollLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true"
android:layout_weight="1"
android:scrollbars="vertical">
<FrameLayout
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginRight="5dp"
android:background="#ffffff">
</FrameLayout>
</ScrollView>
在此framelayout中,我绘制了一个视图,该视图根据绘图参数更改尺寸。
问题是如果图形超出屏幕范围,我绘制的视图不会滚动。 我正在使用framelayout,因为我需要在视图上绘制视图。 在这种情况下我该怎么办?
感谢您的帮助。