1

我创建了一个用于绘制图形的类,该类扩展了 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>
4

2 回答 2

1

这是因为您正在使用不同的方法添加两个视图:一个是系统从 xml 布局中膨胀的,另一个是在活动内部创建的。
这样,当您调用 setContentView(drawView); 时,来自 xml 布局的内容将被丢弃;
更好的说法是,替换为方法中的DrawViewcreated OnCreate
您应该在活动中扩展 xml 布局:

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);

ScrollView container = getLayoutInflater().inflate(R.layout.main_layout, null));
setContentView(drawView);
drawView = container.findViewById(R.id.my_draw_view);
drawView.setBackgroundColor(Color.WHITE);  
}

活动布局应如下所示:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content" >

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">

<com.yourcompany.DrawView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>

</LinearLayout>
</ScrollView>


如果有帮助,请不要害羞地接受它或 +1。

于 2012-12-27T15:31:12.717 回答
0

您可以通过编程方式创建 ScrollView 并将 DrawView 作为子项添加到其中。稍后将 ScrollView 设置为 Activity 的内容。像这样的东西:

drawView = new DrawView(this);
drawView.setBackgroundColor(Color.WHITE);

ScrollView sv = new ScrollView(this);
sv.setLayoutParams( new LayoutParams( LayoutParams.FILL_PARENT,LayoutParams.FILL_PARENT ) );
scrollView.addView( drawView );

setContentView(sv);
于 2012-12-28T10:07:26.120 回答