Why when I import a Text File to my project it shows me an error?
I need the text file to read some info from it and display it on a ListView. Here is a screenshot of what I am talking about.

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To open raw resources, you need to use
openRawResource().For example, if you’re in an
Activity, you can open the raw text file as:This returns an InputStream, which allows you to read from your file.
This SO question provides a nice code sample for basic reading of a raw text file.