Hi I am writing the application to open HTML file.so for initial activity I am mentioning in AndroidManifest file as
<data android:mimeType="text/html" />
In the activity I am getting the URI of HTML file by using following code.
Uri mDataUri = = getIntent().getData();
and then by using following code I am reading the data of HTML file by using the following code
ContentResolver cr = getContentResolver();
InputStream input = cr.openInputStream(mDataUri);
from InputStream I am parsing the data and getting the content.
But now client want the Splash screen in the middle ,so if I read the data in SplashScrren I am unable to send to the SecondScreen because that file Content is more(after converting to string length is:3,00,000).
Now Same HTML How can I read in Second Screen ?