public
1 @Override 2 public void onCreate(Bundle savedInstanceState) { 3 super.onCreate(savedInstanceState); 4 5 Button b1 = (Button) this.findViewById(R.id.button1); 6 b1.setOnClickListener(new View.OnClickListener() { 7 @Override 8 public void onClick(View v) { 9 try { 10 try { 11 InputStream is = null; 12 BufferedReader br = null; 13 String text = ""; 14 15 is = getAssets().open("script.txt"); 16 br = new BufferedReader(new InputStreamReader(is)); 17 18 String line; 19 } finally { 20 is.close(); 21 br.close(); 22 } 23 } catch (Exception e) { 24 e.printStackTrace(); 25 } 26 TextView textview = (TextView) findViewById(R.id.scriptview); 27 textview.setText(text); 28 } 29 }); 30 } 31}
ボタンを押すたびに一行づつテキストを読み込んで表示するアプリを作ろうとしているのですが、
「is.close」のis、「br.close」のbr、「textview.setText(text)」の()内のtextで
「エラー:シンボルを見つけられません」が出ます.
対処方法を教えていただけますか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2016/08/17 09:35