0

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

   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;
            }
        }
    }
}

主.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>

请帮忙,谢谢!

4

1 回答 1

0

您在代码中做了一些奇怪的事情:
首先您尝试在findViewById()使用之前找到一个视图setContentView()(sv不要使用),最后将内容设置为布局。

相反,您可能想要做的是创建自己的视图,然后在 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.
}

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

于 2012-05-22T09:02:39.210 回答