How to center a square in android studio

Phill

I have created a square in android studio, my code for it is below. I don't know how to center it. at the moment I have it starting from an x position of 20 and a y position of 20. How do I make it so that it is centered, do I just have to keep messing around with the coordinates or is there a way to do it exactly?

package com.example.cms0369.somethingelse;

import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.view.View;


public class Draw extends View {
Paint paint = new Paint();
//float startX;
//float startY;
//float stopX;
//float stopY;

public Draw(Context context){
    super(context);
    paint.setColor(Color.BLACK);
}

@Override
public void onDraw(Canvas canvas){
    canvas.drawLine(20, 20, 200, 20, paint);
    canvas.drawLine(20, 20, 20, 200, paint);
    canvas.drawLine(20, 200, 200, 200, paint);
    canvas.drawLine(200, 200, 200, 20, paint);
}


}
AndroidEx

You can try something like this:

int rectSide = ...;

@Override
public void onDraw(Canvas canvas){
    int width = canvas.getWidth();
    int height = canvas.getHeight();
    canvas.drawRect(width/2f - rectSide/2f,
                    height/2f - rectSide/2f,
                    width/2f + rectSide/2f,
                    height/2f + rectSide/2f, paint);
}

이 기사는 인터넷에서 수집됩니다. 재 인쇄 할 때 출처를 알려주십시오.

침해가 발생한 경우 연락 주시기 바랍니다[email protected] 삭제

에서 수정
0

몇 마디 만하겠습니다

0리뷰
로그인참여 후 검토

관련 기사

분류에서Dev

How to Import A Project Into Android Studio ?

분류에서Dev

How to maximize logcat's windows on android studio?

분류에서Dev

How to import openCV samples into Android Studio

분류에서Dev

How to call method with View Parameter in Android Studio

분류에서Dev

Round & Square display Detection - Android Wear Service

분류에서Dev

How to align these elements to the center?

분류에서Dev

Android notification center pauses Activity?

분류에서Dev

Android: center background of radio button

분류에서Dev

Move ImageView To Center Of Screen in android

분류에서Dev

android-times-square v1.3.0을 사용하여 Android Studio 0.8.6에서 레이아웃을 렌더링 할 수 없습니다.

분류에서Dev

How do you get the square root in Ada?

분류에서Dev

How to use square brackets for math in Java?

분류에서Dev

How to replace value with square brackets using sed?

분류에서Dev

How can I use Cordova without installing Android Studio?

분류에서Dev

how to put True type font file in assets folder in android studio

분류에서Dev

How to properly create a particular R.id in Android Studio?

분류에서Dev

How do I calculate age using the date format in android studio?

분류에서Dev

how can i add poi jar file to android studio 1.0.1

분류에서Dev

How to include GitHut library in my project (Android Studio)

분류에서Dev

How can I add this module to my Android Studio project?

분류에서Dev

How to center text inside a component?

분류에서Dev

how to center horizontally the li elements

분류에서Dev

How to properly center steps in bootstrap?

분류에서Dev

Android - Center Entire TextView, including background

분류에서Dev

Android XML: Center ImageButtons Regardless of Screen Orientation

분류에서Dev

Android Design cancel effect of a widget to center alignment

분류에서Dev

Android Game Center, SHA1 키

분류에서Dev

Android Imge Picasso Square 캐시 크기

분류에서Dev

Migrate to Android Studio

Related 관련 기사

  1. 1

    How to Import A Project Into Android Studio ?

  2. 2

    How to maximize logcat's windows on android studio?

  3. 3

    How to import openCV samples into Android Studio

  4. 4

    How to call method with View Parameter in Android Studio

  5. 5

    Round & Square display Detection - Android Wear Service

  6. 6

    How to align these elements to the center?

  7. 7

    Android notification center pauses Activity?

  8. 8

    Android: center background of radio button

  9. 9

    Move ImageView To Center Of Screen in android

  10. 10

    android-times-square v1.3.0을 사용하여 Android Studio 0.8.6에서 레이아웃을 렌더링 할 수 없습니다.

  11. 11

    How do you get the square root in Ada?

  12. 12

    How to use square brackets for math in Java?

  13. 13

    How to replace value with square brackets using sed?

  14. 14

    How can I use Cordova without installing Android Studio?

  15. 15

    how to put True type font file in assets folder in android studio

  16. 16

    How to properly create a particular R.id in Android Studio?

  17. 17

    How do I calculate age using the date format in android studio?

  18. 18

    how can i add poi jar file to android studio 1.0.1

  19. 19

    How to include GitHut library in my project (Android Studio)

  20. 20

    How can I add this module to my Android Studio project?

  21. 21

    How to center text inside a component?

  22. 22

    how to center horizontally the li elements

  23. 23

    How to properly center steps in bootstrap?

  24. 24

    Android - Center Entire TextView, including background

  25. 25

    Android XML: Center ImageButtons Regardless of Screen Orientation

  26. 26

    Android Design cancel effect of a widget to center alignment

  27. 27

    Android Game Center, SHA1 키

  28. 28

    Android Imge Picasso Square 캐시 크기

  29. 29

    Migrate to Android Studio

뜨겁다태그

보관