0

In my application, i am using Tabhost and I have placed the webview inside tab host to show the contents.When the user taps the screen the contents should be displayed in fullscreen and vice versa but this is not happening.How to acheive this?Please Suggest me some ideas !

thanks

KMI
  • 496
  • 4
  • 24
user181291
  • 719
  • 1
  • 5
  • 7

1 Answers1

0

Use

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
    startActivity(intent);

this code on your eventlistener.

Shalini
  • 1,733
  • 4
  • 17
  • 31