custom html 5 button not working in android webview. it keep asking me login. i want upon clicking on html 5 button it should redirect on android default browser instead of staying inside android app's webview.
i want to redirect user from webview -> android default browser(ex. chrome) but . <!-!- A link that initiates a buy (market) of the SBIN stock !//-!-> <!a href="#" data-kite="your_api_key" data-exchange="NSE" data-tradingsymbol="SBIN" data-transaction_type="BUY" data-quantity="1" data-order_type="MARKET"!>Buy SBI stock<!/a!> . this code keeps user inside app only not goes to default browser.
A webview session and browser session are not shared, so the user has to login again on the browser.
.
<!-!- A link that initiates a buy (market) of the SBIN stock !//-!->
<!a href="#" data-kite="your_api_key"
data-exchange="NSE"
data-tradingsymbol="SBIN"
data-transaction_type="BUY"
data-quantity="1"
data-order_type="MARKET"!>Buy SBI stock<!/a!>
.
this code keeps user inside app only not goes to default browser.