Page 1 of 1

For example, we have a file in our raw folder app/src/main/res/raw/sample_teas.json. To get an InputStream for reading i

Posted: Mon Aug 01, 2022 9:41 am
by answerhappygod
For example, we have a file in our raw folder app/src/main/res/raw/sample_teas.json. To get an InputStream for reading it, from out Context context, we can do this:

A. val input = context!!.openRawResource(R.raw.sample_teas)
B. val input = context!!.getRawResource(R.raw.sample_teas)
C. val input = context!!.resources.openRawResource(R.raw.sample_teas)