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!

link|improve this question

2  
Please post the logcat of your exception – Egor Aug 25 '11 at 6:57
1  
unmatched {, empty else {}... it's priceless. – J-16 SDiZ Aug 25 '11 at 7:01
08-25 11:40:09.836: ERROR/AndroidRuntime(789): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.content.read/com.content.read.ReadAsset}: android.view.InflateException: Binary XML file line #63: Error inflating class java.lang.reflect.Constructor. – Sunny Aug 25 '11 at 7:12
ohhhhh man i got it working. Thanks for every one . the problem is in xml and string file and also in the emulator.App works on 2.1 and i was trying to run it on 1.5.I will now modify it so that it also can work on 1.5 whenever i run it on 1.5 it gives error: [2011-08-25 13:35:18 - Emulator] This application has requested the Runtime to terminate it in an unusual way. [2011-08-25 13:35:18 - Emulator] Please contact the application's support team for more information. [2011-08-25 13:35:18 - ReadAsset] emulator-5554 disconnected! Cancelling 'com.content.read.ReadAsset activity launch'! – Sunny Aug 25 '11 at 8:19
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.