在hello的android書中有一個Sudoku解決方案。我想在最後創建一個消息,顯示一個對話,祝賀你。我有一個方法來檢查是否有留下任何空squareds和我打電話,在我之前,進入瓷磚來檢查,如果最後輸入的是爲正方形爲什麼if語句會左右晃動屏幕
/****** Check to see if the game is complete **/
public boolean isSolved() {
for (int element : puzzle) {
if (element == 0)
return false;
}
return true;
}
/** Change the tile only if it's a valid move */
protected boolean setTileIfValid(int x, int y, int value) {
int tiles[] = getUsedTiles(x, y);
if (value != 0) {
for (int tile : tiles) {
if (tile == value)
return false;
}
}
setTile(x, y, value);
calculateUsedTiles();
//check if the game is complete after each valid move
if (isSolved() == true) {
Intent i = new Intent(this, Congratulations.class);
startActivity(i);}
else
{
return false;
}
return true;
}
有效入境出於某種原因的另一種方法遊戲完成時整個屏幕從一側搖到另一側。在我進入遊戲檢查之前,這並沒有做到這一點。爲什麼和它在哪裏做這件事?
Congratulatons.xml <?xml version="1.0" encoding="utf-8"?> <ScrollView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:padding="10dip" > <TextView android:id="@+id/about_content" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/congratulations_text" /> </ScrollView>
Congratulations.java
package com.example.sudoku;
import android.app.Activity;
import android.os.Bundle;
public class Congratulations extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.congratulations);
}
}
請問您是否可以在AndroidManifest.xml中發佈您的標籤 –
Ivo