我创建了一个用于绘制图形的类,该类扩展了 View,它看起来就像这里的 How to draw a line in android。
在一个活动中,我用这个展示它
drawView = new DrawView(this);
drawView.setBackgroundColor(Color.WHITE);
setContentView(drawView);
但是当我ScrollView
在活动的 xml 中的 LinearLayout 中添加 时,它不起作用,我的意思是我不能向下滚动,就像没有ScrollView
. 可能是什么问题?
这是xml代码
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/background_image"
android:orientation="vertical" >
</LinearLayout>
</ScrollView>