I have a file containing text in separate line.I want to display line first, and then if I press a button, the second line should be displayed in the TextView and the first line should disappear. Then, if I press it again, the third line should be displayed and so on.
public class ReadAsset extends Activity implements View.OnClickListener{
private String line;
InputStream is;
BufferedReader br;
TextView tv;
@Override
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
tv = (TextView)findViewById(R.id.text);
Button next=(Button)findViewById(R.id.widget34);
try {
is = this.getAssets().open("mydata");
br = new BufferedReader(new InputStreamReader(is));
line=br.readLine();
tv.setText(line);
next.setOnClickListener(this);
is.close();
} catch(IOException e) {
throw new RuntimeException(e);
}
}
public void onClick(View v){
try {
line=br.readLine();
}
catch(IOException e)
{
throw new RuntimeException();
}
if (line != null){
tv.setText(line);
}
//else {}
}
Please help. Thanks in advance!
{, emptyelse {}... it's priceless. – J-16 SDiZ Aug 25 '11 at 7:01