android 구현 구 궁 격 프로그램
(설 치 된 것 은 최소 몇 개 와 최대 대련 몇 개)
MainActivity
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
NineView view = new NineView(this);
setContentView(view);
view.setOnPasswordFinishListener(new NineView.OnPasswordFinishListener() {
@Override
public void onPasswordFinish(String password) {
Toast.makeText(getBaseContext(), " :" + password, Toast.LENGTH_SHORT).show();
}
});
}
}
NineView
public class NineView extends View {
int width;
Paint paintback = new Paint();
Paint paintsrc = new Paint();
int background;
//
int max = 6; // 6
int min = 4;
//
float currX, currY;
public NineView(Context context) {
super(context);
init();
}
public NineView(Context context, AttributeSet attrs) {
super(context, attrs);
init();
}
public void init() {
paintback.setDither(true);
paintback.setAntiAlias(true);
paintsrc.setDither(true);
paintsrc.setAntiAlias(true);
//171625
background = Color.rgb(0x17, 0x16, 0x25);
paintback.setColor(background);
//3791E6
paintsrc.setColor(Color.rgb(0x37, 0x91, 0xe6));
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
width = getWidth() / 4;
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
//
canvas.drawColor(background);
//
if (result.size() > 0) {
//
int x = result.get(result.size() - 1) % 3 + 1;
int y = result.get(result.size() - 1) / 3 + 1;
paintsrc.setStrokeWidth(10);
canvas.drawLine(x * width, y * width, currX, currY, paintsrc);
canvas.drawCircle(x * width, y * width, width / 3, paintback);
if (result.size() > 1) {
//
for (int i = 0; i < result.size() - 1; i++) { // 1 2 3 <=2
// i i
//
int x1 = result.get(i) % 3 + 1;
int y1 = result.get(i) / 3 + 1;
//
int x2 = result.get(i + 1) % 3 + 1;
int y2 = result.get(i + 1) / 3 + 1;
paintsrc.setStrokeWidth(10);
canvas.drawLine(x1 * width, y1 * width, x2 * width, y2 * width, paintsrc);
canvas.drawCircle(x1 * width, y1 * width, width / 3, paintback);
}
}
}
paintsrc.setStrokeWidth(2);
//9
paintsrc.setStyle(Paint.Style.STROKE);
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 3; j++) {
canvas.drawCircle((i + 1) * width, (j + 1) * width, width / 3, paintsrc);
}
}
paintsrc.setStyle(Paint.Style.FILL);
for (Integer integer : result) {
//i j ; // 8 2 2
int j = integer / 3 + 1;
int i = integer % 3 + 1;
canvas.drawCircle(i * width, j * width, width / 8, paintsrc);
}
}
//
List<Integer> result = new ArrayList<>();
@Override
public boolean onTouchEvent(MotionEvent event) {
float x = event.getX();
float y = event.getY();
switch (event.getAction()) {
case MotionEvent.ACTION_DOWN:
//
int i = isConnPoint(x, y);
//
if (i != -1) {
result.add(i);
currX = x;
currY = y;
}
Log.e("TAG", "=====" + i);
break;
case MotionEvent.ACTION_MOVE:
currX = x;
currY = y;
// , result
int point = isConnPoint(x, y);
if (point != -1 && !result.contains((Integer) point)) {
result.add(point);
if (result.size() > max) {
//reslut
if (onPasswordFinishListener != null)
onPasswordFinishListener.onPasswordFinish(getPassword());
result.clear();
}
}
break;
case MotionEvent.ACTION_UP:
if (result.size() >= min) {
if (onPasswordFinishListener != null)
onPasswordFinishListener.onPasswordFinish(getPassword());
}
result.clear();
break;
}
invalidate();
return true;
}
public String getPassword() {
String password = "";
for (Integer integer : result) {
password += integer + "";
}
return password;
}
//
public int isConnPoint(float x, float y) {
//9 width,width width
for (int i = 0; i < 3; i++) {
for (int j = 0; j < 3; j++) {
if (pointOnCircle(x, y, (j + 1) * width, (i + 1) * width)) {
return i * 3 + j; //0-8
}
}
}
return -1;
}
public boolean pointOnCircle(float x, float y, int cx, int cy) {//true
Log.e("TAG", ((cx - x) * (cx - x) + (cy - y) * (cy - y)) + "");
Log.e("TAG", ((float) width / 3f) * ((float) width / 3f) + "");
float i = ((cx - x) * (cx - x) + (cy - y) * (cy - y));
float j = ((float) width / 3f) * ((float) width / 3f);
return i < j;
}
public void setOnPasswordFinishListener(OnPasswordFinishListener onPasswordFinishListener) {
this.onPasswordFinishListener = onPasswordFinishListener;
}
private OnPasswordFinishListener onPasswordFinishListener;
public interface OnPasswordFinishListener {
void onPasswordFinish(String password);
}
}
이상 이 바로 본 고의 모든 내용 입 니 다.여러분 의 학습 에 도움 이 되 고 저 희 를 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Kotlin의 기초 - 2부지난 글에서는 Kotlin이 무엇인지, Kotlin의 특징, Kotlin에서 변수 및 데이터 유형을 선언하는 방법과 같은 Kotlin의 기본 개념에 대해 배웠습니다. 유형 변환은 데이터 변수의 한 유형을 다른 데이터...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.