Recebo a exceção do título quando executo meu aplicativo. O que ele faz é ter um arquivo .txt com palavras para um jogo da forca e acho que a exceção é lançada ao acessar o arquivo. Meu arquivo, cuvinte.txt, está localizado em / assets /. Aqui está o meu código (eu pulei a parte do layout / xml, que funciona bem):
public void onCreate() {
// all the onCreate() stuff, then this:
try {
AssetManager am = this.getAssets();
InputStream is = am.open("cuvinte.txt");
InputStreamReader inputStreamReader = new InputStreamReader(is);
BufferedReader b = new BufferedReader(inputStreamReader);
String rand;
while((rand=b.readLine())!=null){
cuvinte.add(rand);
}
} catch (IOException e) {
Toast.makeText(this, "No words file", Toast.LENGTH_LONG).show();
e.printStackTrace();
}
newGame(newG);
}
public void newGame(View view){
Random rand = new Random();
String stringCuvant = cuvinte.get(rand.nextInt(cuvinte.size()));
cuvant.setText("");
System.out.println(stringCuvant);
for(int i = 0; i< stringCuvant.length(); i++){
cuvant.append("_ ");
}
incercari.setText(valIncercari);
}
A função newGame () é chamada quando o novo botão do jogo é pressionado e no início da atividade, na função onCreate ().
setText()
função.