如何在Scrollview中使用画布绘画?

时间:2012-05-22 08:53:15

标签: android canvas scrollview

我有一个画布,我想在其中绘制几个矩形,我可以在内部视图中使用画布绘画,但我需要在滚动视图中绘画,我尝试使用此代码,但有些有邪恶。 这是代码:

   package prueba.android.ondraw;

import android.app.Activity;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.os.Bundle;
import android.view.View;
import android.view.Window;
import android.view.WindowManager;
import android.widget.LinearLayout;
import android.widget.ScrollView;
import android.widget.TextView;

public class Prueba_ondrawActivity extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        requestWindowFeature(Window.FEATURE_NO_TITLE);
        getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
        super.onCreate(savedInstanceState);

        LinearLayout layout = (LinearLayout) findViewById(R.id.layout);
        setContentView(R.layout.main);

        MyView v = new MyView(this);
        layout.addView(v);

    }
    private class MyView extends View{
        public MyView(Context context) {
            super(context);
        }
        protected void onDraw(Canvas canvas) {
            int j = 0;
            for(int i=0;i<10;i++){
                super.onDraw(canvas);
                Paint paint = new Paint();
                paint.setColor(Color.CYAN);
                paint.setAntiAlias(true);
                canvas.drawRect(0, j,50,50, paint);
                j= j+100;
            }
        }
    }
}

main.xml中

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" 
    android:background="@android:color/darker_gray">

    <ScrollView
        android:id="@+id/scrollView1"
        android:layout_width="150dp"
        android:layout_height="400dp"
        android:layout_marginLeft="100dp" >
        <LinearLayout
            android:id="@+id/layout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
        </LinearLayout>
    </ScrollView>

</LinearLayout>

请帮助,谢谢!

1 个答案:

答案 0 :(得分:0)

你在代码中做了一些奇怪的事情:
首先,在使用findViewById()之前尝试查找视图(setContentView())(此处sv将始终为null,因为还没有视图),然后将该视图替换为新的ScrollView(您不使用),最后将内容设置为布局。

相反,您可能希望做的是创建自己的View,然后在ScrollView中使用它?

在ScrollView中,您有一个布局,这需要一个ID:

<ScrollView
    android:id="@+id/scrollView1"
    android:layout_width="150dp"
    android:layout_height="400dp"
    android:layout_marginLeft="100dp" >
    <LinearLayout
        android:id="@+id/layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>
</ScrollView>

然后在代码中找到这个布局:

setContentView(R.layout.main);
LinearLayout layout = (LinearLayout) findViewById(R.id.layout);
//Create a new instance of MyView...
MyView v = new MyView(this);
//...And add it to the layout:
layout.addView(v);

您可以像这样定义自己的MyView

private class MyView extends View{
    //Your onDraw() method here.
}

(请注意,我调用了自定义视图MyView。这是因为android已经有一个名为View的类,所以如果你给出已经存在的类名,它可能会引起很多混乱)