0 / 0 / 0
Регистрация: 20.03.2018
Сообщений: 1
|
|
1
|
Ошибки в коде Android
20.03.2018, 21:13. Показов 515. Ответов 1
Имеются ошибки в коде, игра пятнашки, помогите плез с решением
Ошибки :
http://j-p-g.net/if/2018/03/20... 569609.jpg
http://j-p-g.net/if/2018/03/20... 569609.jpg
http://j-p-g.net/if/2018/03/20... 569609.jpg
Сам код:
Java | 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
| <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<TableLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true">
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight=".25">
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="1"
android:tag="1"
android:id="@+id/button1"
android:layout_column="0"
android:layout_weight=".25"
android:onClick="buttonOnClick"
android:textSize="26sp" />
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="2"
android:tag="2"
android:id="@+id/button2"
android:layout_column="1"
android:layout_weight=".25"
android:textSize="26sp"
android:onClick="buttonOnClick" />
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="3"
android:tag="3"
android:id="@+id/button3"
android:layout_column="2"
android:layout_weight=".25"
android:textSize="26sp"
android:onClick="buttonOnClick" />
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="4"
android:tag="4"
android:id="@+id/button4"
android:layout_column="3"
android:layout_weight=".25"
android:textSize="26sp"
android:onClick="buttonOnClick" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight=".25">
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="5"
android:tag="5"
android:id="@+id/button5"
android:layout_column="0"
android:layout_weight=".25"
android:textSize="26sp"
android:onClick="buttonOnClick" />
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="6"
android:tag="6"
android:id="@+id/button6"
android:layout_column="1"
android:layout_weight=".25"
android:textSize="26sp"
android:onClick="buttonOnClick" />
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="7"
android:tag="7"
android:id="@+id/button7"
android:layout_column="2"
android:layout_weight=".25"
android:textSize="26sp"
android:onClick="buttonOnClick" />
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="8"
android:tag="8"
android:id="@+id/button8"
android:layout_column="3"
android:layout_weight=".25"
android:textSize="26sp"
android:onClick="buttonOnClick" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight=".25">
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="9"
android:tag="9"
android:id="@+id/button9"
android:layout_column="0"
android:layout_weight=".25"
android:textSize="26sp"
android:onClick="buttonOnClick" />
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="10"
android:tag="10"
android:id="@+id/button10"
android:layout_column="1"
android:layout_weight=".25"
android:textSize="26sp"
android:onClick="buttonOnClick" />
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="11"
android:tag="11"
android:id="@+id/button11"
android:layout_column="2"
android:layout_weight=".25"
android:textSize="26sp"
android:onClick="buttonOnClick" />
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="12"
android:tag="12"
android:id="@+id/button12"
android:layout_column="3"
android:layout_weight=".25"
android:textSize="26sp"
android:onClick="buttonOnClick" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight=".25">
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="13"
android:tag="13"
android:id="@+id/button13"
android:layout_column="0"
android:layout_weight=".25"
android:textSize="26sp"
android:onClick="buttonOnClick" />
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="14"
android:tag="14"
android:id="@+id/button14"
android:layout_column="1"
android:layout_weight=".25"
android:textSize="26sp"
android:onClick="buttonOnClick" />
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="15"
android:tag="15"
android:id="@+id/button15"
android:layout_column="2"
android:layout_weight=".25"
android:onClick="buttonOnClick"
android:textSize="27sp" />
<Button
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:text="16"
android:tag="16"
android:id="@+id/button16"
android:layout_column="3"
android:layout_weight=".25"
android:elegantTextHeight="false"
android:visibility="invisible"
android:onClick="buttonOnClick"
android:textSize="26sp" />
</TableRow>
</TableLayout>
</RelativeLayout> |
|
Java | 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
| package com.example.admin.diplom;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.net.Uri;
import android.view.Menu;
import android.view.MenuItem;
import android.widget.Toast;
import java.util.Random;
public class Game extends AppCompatActivity {
//Объявляем массив кнопок
Button[] B;
/**
* ATTENTION: This was auto-generated to implement the App Indexing API.
* See https://g.co/AppIndexing/AndroidStudio for more information.
*/
private GoogleApiClient client;
@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.menu15, menu);
return true;
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_game);
//Создаем массив кнопок.
B = new Button[16];
//Записываем кнопки в массив.
B[0] = (Button) findViewById(R.id.button1);
B[1] = (Button) findViewById(R.id.button2);
B[2] = (Button) findViewById(R.id.button3);
B[3] = (Button) findViewById(R.id.button4);
B[4] = (Button) findViewById(R.id.button5);
B[5] = (Button) findViewById(R.id.button6);
B[6] = (Button) findViewById(R.id.button7);
B[7] = (Button) findViewById(R.id.button8);
B[8] = (Button) findViewById(R.id.button9);
B[9] = (Button) findViewById(R.id.button10);
B[10] = (Button) findViewById(R.id.button11);
B[11] = (Button) findViewById(R.id.button12);
B[12] = (Button) findViewById(R.id.button13);
B[13] = (Button) findViewById(R.id.button14);
B[14] = (Button) findViewById(R.id.button15);
B[15] = (Button) findViewById(R.id.button16);
// ATTENTION: This was auto-generated to implement the App Indexing API.
// See https://g.co/AppIndexing/AndroidStudio for more information.
client = new GoogleApiClient.Builder(this).addApi(AppIndex.API).build();
}
private void showMsg(String msg) {
Toast toast = Toast.makeText(this, msg, Toast.LENGTH_LONG);
toast.show();
}
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getTitle().toString()) {
case "Новая игра":
showMsg("Новая игра");
Random rand = new Random();
int n;
for (int i=0;i<500;i++) {
n = rand.nextInt(16);
buttonOnClick(B[n]);
}
break;
case "Выход":
finish();
System.exit(0);
break;
}
return super.onOptionsItemSelected(item);
}
//Функция смены кнопок Swap(B[2],B[3]);
public void Swap(Button B1, Button B2) {
if (B2.getVisibility() == View.INVISIBLE) {
B2.setVisibility(View.VISIBLE);
B1.setVisibility(View.INVISIBLE);
String Tmp = B1.getText().toString();
B1.setText(B2.getText());
B2.setText(Tmp);
}
}
public void buttonOnClick(View V) {
//Получаем текущую кнопку по которой кликнули
Button current = (Button) V;
//Получаем номер кнопки из тега кторый задали в XML файле в текстовом режиме редактирования
String N = current.getTag().toString();
//преобразуем тег из строки в целое число
int n = Integer.parseInt(N) - 1;
//рассчитываем номер строки путем целочисленного деления
int y = n / 4;
//вычисляем столбец
int x = n;
if (n >= 12) x = n - 12;
else if (n >= 8) x = n - 8;
else if (n >= 4) x = n - 4;
//Рассчитываем номер кнопки сверху снизу слева справа и записываем в переменные
//NT NL NR NB NC (Top Left Right Bottom Current)
int nc = y * 4 + x;
int nt = (y - 1) * 4 + x;
int nb = (y + 1) * 4 + x;
int nl = y * 4 + x - 1;
int nr = y * 4 + x + 1;
//Проверяем существование кнопки слева справа снизу сверху
//Если существует то пытаемся поменять кнопки местами
if (y - 1 >= 0)
Swap(B[nc], B[nt]);
if (y + 1 < 4)
Swap(B[nc], B[nb]);
if (x - 1 >= 0)
Swap(B[nc], B[nl]);
if (x + 1 < 4)
Swap(B[nc], B[nr]);
int cnt=0;
for (int i=0;i<16;i++) {
if (B[i].getText().equals(Integer.toString(i+1))) cnt++;
}
if (cnt == 16) showMsg("Вы выиграли");
}
} |
|
Java | 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
| <?xml version="1.0" encoding="utf-8"?>
<menu>
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:context=".Game">
<item android:id="@+id/action_menu"
android:title="menu">
<menu>
<item android:id="@+id/menu_item1"
android:title="Новая игра"></item>
<item android:id="@+id/menu_item2"
android:title="Выход"></item>
</menu>
</item>
</menu> |
|
Добавлено через 16 минут
0
|