- Posts: 9
- Thank you received: 0
Microsoft Windows Phone 8.1 support ends (13 Jul 2017)
Microsoft has ended support for Windows Phone 8.1
Here you should submit your bug reports with logcat.
Screen rotation seems to be glitched
IP: 192.168.0.71
8 years 7 months ago #12689
by JQRL
Screen rotation seems to be glitched was created by JQRL
Hi, I've been using the screen rotation feature for the cordova plugin.
It seems that when i select and anotation and rotatw my screen, the view becomes glitched. I'm not sure if this is the case for everyone or just me.
Is thee a way to fix this?
It seems that when i select and anotation and rotatw my screen, the view becomes glitched. I'm not sure if this is the case for everyone or just me.
Is thee a way to fix this?
IP: 192.168.0.71
8 years 7 months ago #12691
by support
Replied by support on topic Screen rotation seems to be glitched
May you say on which platform are you working on? Android or iOS?
If Android, which kind of device, screen resolution/size, os version?
We'd do some internal tests on it.
If Android, which kind of device, screen resolution/size, os version?
We'd do some internal tests on it.
IP: 192.168.0.71
8 years 7 months ago #12693
by JQRL
Replied by JQRL on topic Screen rotation seems to be glitched
Currently using
www.amazon.com/Samsung-Galaxy-Tablet-7-I...T230NU/dp/1400697484
on android
on android
IP: 192.168.0.71
8 years 7 months ago #12697
by nermeen
Replied by nermeen on topic Screen rotation seems to be glitched
Rotating while an annotation is selected will invalidate the saved annotation's position information.
The solution is to cancel the annotation selection, this can be done by adding the following method to PDFViewController:
And call it from PDFViewAct:
The solution is to cancel the annotation selection, this can be done by adding the following method to PDFViewController:
Code:
public void onConfigChanged() {
if(m_bar_status == BAR_ACT) {
m_view.PDFCancelAnnot();
m_bar_act.BarHide();
m_bar_status = BAR_NONE;
}
}
Code:
public void onConfigurationChanged(Configuration newConfig)
{
m_controller.onConfigChanged();
super.onConfigurationChanged(newConfig);
}
Time to create page: 0.398 seconds