[TIMOB-27337] Hyper link in html not working on Android
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | None |
Status | Open |
Resolution | Unresolved |
Affected Version/s | Release 8.1.0 |
Fix Version/s | n/a |
Components | Android |
Labels | engSchedule |
Reporter | Rakhi Mitro |
Assignee | Unknown |
Created | 2019-08-15T10:54:14.000+0000 |
Updated | 2020-03-10T22:49:31.000+0000 |
Description
The html is being set on Webview. But when we click on "click here” label hyperlink is html is not working on android and for this map is not loaded. On the other hand, this is working as expected on iOS.
*Test Environment:*
Appcelerator Command-Line Interface, version 7.1.0
Operating System
Name = Mac OS X
Version = 10.14.2
Architecture = 64bit
# CPUs = 4
Memory = 8589934592
Node.js
Node.js Version = 8.9.4
npm Version = 5.6.0
Titanium CLI
CLI Version = 5.2.1
Titanium SDK
SDK Version = 8.1.0.GA
SDK Path = /Users/macbookpro/Library/Application Support/Titanium/mobilesdk/osx/8.1.0.GA
Target Platform = android
Device: iOS(12.3.1) Android:(Huawei Gr3 2017-7.0.0)
Test Code:
var win = Ti.UI.createWindow({
backgroundColor: "white"
});
var html= '<meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width, initial-scale=1">';
var venuehtml= "<head><p>Hotel Center Point,<br />Ramdas Peth,<br />Nagpur,<br />Maharashtra, India</p>\n<p><a href=\"http://goo.gl/maps/Q9pExktkV53up2Kd9\" target=\"_blank\">Click here</a> for directions to the venue.</p></head>";
win.add(Ti.UI.createWebView({
// backgroundColor : 'red',
width : Ti.UI.FILL,
height : Ti.UI.FILL,
//touchEnabled:false,
top : '0dp',
left : '8dp',
right : '8dp',
scalesPageToFit : (Ti.Platform.osname == 'android') ? true : false,
willHandleTouches : false,
borderRadius : 0.1,
disableBounce : true,
enableZoomControls : false,
ignoreSslError:true,
mixedContentMode : true,
//url:"https://goo.gl/maps/Q9pExktkV53up2Kd9"
html : html + venuehtml
}));
win.open();
*Test Steps:*
* Open Studio
* Paste the sample code into app.js
* After running, click “"click here”, we got a blank window on android but map is loaded in IOS.
*Test Output:*
*iOS:*
!IMG_0072.jpg|thumbnail! !IMG_0071.jpg|thumbnail!
*Android:*
!Screenshot_20190815-163756.png|thumbnail! !Screenshot_20190815-163802.png|thumbnail!
Attachments
File | Date | Size |
---|---|---|
IMG_0071.jpg | 2019-08-15T10:55:35.000+0000 | 130950 |
IMG_0072.jpg | 2019-08-15T10:59:49.000+0000 | 41186 |
Screenshot_20190815-163756.png | 2019-08-15T10:57:00.000+0000 | 75995 |
Screenshot_20190815-163802.png | 2019-08-15T10:57:46.000+0000 | 34025 |
Is there any progress for this issue? So that we can update to customer. Thank you.