Unable to switch Panel Configuration in android app?

I am trying to do showcase habpanel in android application.In my android app accessing habpanel by using web view, when load the application accessing habpanel is done. But when i am trying do switch local storage to panel configuration in android application,it will not switch to panel configuration.
This is my activity code

public class MainActivity extends AppCompatActivity {
private WebView mywebview;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
mywebview = (WebView) findViewById(R.id.web_view);
WebSettings webSettings = mywebview.getSettings();
webSettings.setJavaScriptEnabled(true);
mywebview.loadUrl(“http://192.168.0.106:8080/habpanel/index.html”);
mywebview.setWebViewClient(new WebViewClient());
}
}