我得到了这个代码我到目前为止一直在努力,它将成为一个游戏,我试图创建只是在两个玩家之间切换。每次切换它都应该写出一个问题,比如真理或者敢。不允许两次写同一个问题,因此应该能够看出它是否已经使用过该问题。
到目前为止,我已经让它运行了,每次你点击Next时它会在两个玩家之间切换。
但是我遇到了很多麻烦,就是从名为man的txt文件中获取数据,这里有三行,text1 text2和text3。它应该能够随机取出并知道它是否已经读过一个。我无法使当前的InputStream工作,它说man文件是int,但它包含字符串?
以下是目前的代码:
package truthordare;
import java.io.FileInputStream;
import java.io.IOException;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
//import android.content.Intent;
public class truthordareActivity extends Activity
{
public int i = 0;
//public String man;
//public String woman;
TextView w;
TextView m;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
{
final Button buttonPlay = (Button) findViewById(R.id.buttonPlay);
buttonPlay.setOnClickListener(new View.OnClickListener()
{
public void onClick(View v)
{
gameCode();
}
});
}
}
/*public FileInputStream openFileInput(int man) throws IOException
{
String collected = null;
try
{
FileInputStream fis = openFileInput(R.raw.man);
byte[] dataArray = new byte[fis.available()];
while (fis.read(dataArray) != -1)
{
collected = new String(dataArray);
}
fis.close();
}
catch (IOException e)
{
e.printStackTrace();
}
return null;
}
*/
public void gameCode()
{
// Perform action on click
setContentView(R.layout.game);
if(i == 0)
{
w = (TextView)findViewById(R.id.textView1);
w.setText("This is a player1");
i = 1;
final Button buttonNext = (Button) findViewById(R.id.buttonNext);
buttonNext.setOnClickListener(new View.OnClickListener()
{
public void onClick(View v)
{
gameCode();
}
});
}
else
{
m = (TextView)findViewById(R.id.textView1);
m.setText("This is player2");
i = 0;
final Button buttonNext = (Button) findViewById(R.id.buttonNext);
buttonNext.setOnClickListener(new View.OnClickListener()
{
public void onClick(View v)
{
gameCode();
}
});
}
}
}
答案 0 :(得分:1)
使用InputStream
抓取Resources.openRawResource
。在您的情况下,这是getResources().openRawResource(R.raw.man)
。
答案 1 :(得分:1)
您是否考虑过使用XML文件来解决问题?根据您提供的信息,结构应如下所示:
<questions>
<question>
<id>1</id>
<text>This is question nr. 1</text>
</question>
<question>
<id>2</id>
<text>This is question nr. 2</text>
</question>
<question>
<id>3</id>
<text>This is question nr. 3</text>
</question>
</questions>
将所有问题作为Question-objects加载到List / ArrayList中,并在询问问题时将其从列表中删除。如果您需要保存问题以供日后使用,请不要删除它们,而是将所有问题的ID保存在另一个列表中,当您尝试获取下一个问题时,请确保其ID不在ID列表中。< / p>
要获得一个随机问题,您只需使用一个随机数生成器,它为您提供0到list.size()之间的值。
这样您就不必花时间一直打开和关闭InputStreams,并且您可以轻松确保只询问一次问题。