gpt4 book ai didi

java - 如何设置 Canvas 大小?

转载 作者:塔克拉玛干 更新时间:2023-11-02 18:55:13 26 4
gpt4 key购买 nike

我有一个名为 SeatsPanel 的类,我在其中使用 onDraw 方法绘制座位(使用 drawRect)。 onDraw 方法使用 Canvas 作为参数,但是如何设置 Canvas 的大小呢?我问这个问题的原因是因为这个类在另一个类中被夸大了。我知道 Canvas 有手机默认的高度和宽度,但我需要把它变小。我该怎么做?

如有任何帮助,我们将不胜感激。

最佳答案

我尝试实现一个简单的应用程序,它在主要 Activity 中绘制一个黑色矩形,通过按下按钮绘制。例如,在 MainActivity 中:

    private Button button1;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
button1=(Button)findViewById(R.id.button);
button1.setOnClickListener(new OnClickListener(){

public void onClick(View v) {
switch(v.getId()){
case R.id.button:

LinearLayout ll=(LinearLayout)findViewById(R.id.linearLayout1);
System.out.println(ll.getWidth()+" "+ll.getHeight());
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(ll.getWidth(),ll.getHeight());
YourView yourView = new YourView(getBaseContext());
yourView.setBackgroundColor(Color.WHITE);
ll.addView(yourView,params);
break;
}

}

});

}

YourView 类中:

    private Bitmap savedBitmap;
public YourView(Context context) {
super(context);
}
public void onDraw(Canvas canvas) {
super.onDraw(canvas);
System.out.println(canvas.getWidth()+" "+canvas.getHeight());

Paint textPaint = new Paint();
textPaint.setARGB(255, 0, 0, 0);
textPaint.setTextAlign(Paint.Align.RIGHT);
textPaint.setTextSize(11);
textPaint.setTypeface(Typeface.DEFAULT);

canvas.drawColor(Color.WHITE);
System.out.println(canvas.getWidth());
System.out.println(canvas.getHeight());

canvas.drawRect(200, 20, 500, 100, textPaint);
}

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" >

<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Push the button and draw a Rect" />

<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Button" />




<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="match_parent"
android:layout_height="match_parent" >

</LinearLayout>

关于java - 如何设置 Canvas 大小?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10229121/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com