B4J Question [ABMaterial] Request for testing 2.16 (2016/12/07)

alwaysbusy

Expert
Licensed User
Longtime User
Hi all,

Mindful and I have been working on a better system for the reconnecting system. We did take a step back and tried a completely different approach to the problem, as we had the feeling for every 'fix' we did, another 'problem' appeared.

I have updated the demo (http://abmaterial.com) and the feedback app with the new system so if you find some time, can you play a bit with it on some different devices and report issues you may find?

Thank you!

Alwaysbusy
 

amminf

Active Member
Licensed User
Longtime User
ABMaterial.com v2.12 running very well on:

Mozilla Firefox, Opera and Chrome Windows desktop browsers
Chrome and stock browser on Android.

Test connect and disconnect ok.

ABMaterial.com v2.12 is more fast than v2.01. Congrats.

Thks for your efforts.

Regards.
 
Last edited:
Upvote 0

PCastagnetti

Member
Licensed User
Longtime User
I did some tests on different phones, causing connection and disconnection in all tests:

Phone Android 4.4 with Chrome -> OK
Phone Android 4.4 with Stock Browser -> OK
Phone Android 6 with Chrome -> OK
Phone Android 6 with Stock Browser -> Connection problem (you can see the problem in the log)
Ipad with Safari -> OK (even turning off and on the tablet)
Pc windows with chrome -> OK
 
Upvote 0

amminf

Active Member
Licensed User
Longtime User
More test on abmaterial.com v1.21

Samsung Galaxy Tab Android 6.0.1
- Stock browser: hang on init
- Chrome: Init ok

Bq Aquaris Android 4.2.1
Stock browser and chrome: hang on init
 
Upvote 0

Harris

Expert
Licensed User
Longtime User
Tried your Feedback on LG3 Android Version 6 with stock browser and it just spins...

Tried it on chrome on same device and the elements in browser window are very small. Open/Edit won't do anything...
The whole page scrolls in browser window - rather than fitting the window (in port and land).

Works fine on Windows 8.1 with Chrome.

My creation based on Feedback looks and works fine on this device, as well as all others I have tried it on ( android tablets and desktops. as well as Note 4 a friend owns) - using 2.03 code base.
 
Upvote 0

alwaysbusy

Expert
Licensed User
Longtime User
More test on abmaterial.com v1.21
This is a typo and you meant 2.12?

Bq Aquaris Android 4.2.1
Websockets are only supported on devices with 4.4+

Conclusion so far:
1. We can not rely on the fact that android 6+ devices do not have a stock browser ($!#@&, pardon my French)

the elements in browser window are very small
Is unrelated and can be to do with my changes on the table in my feedback app. I'll look into this later.
 
Upvote 0

Harris

Expert
Licensed User
Longtime User
'sleepprogramming'
I (many of us) know what you mean. However, your condition is also refereed to as compulsive... A dog with a bone... Just can't leave alone for 2 minutes...
No worries - I also resemble that remark.

Earlier, it did look promising - then - KABOOM! go figure...

You shall get it - no doubts here.
 
Upvote 0

Harris

Expert
Licensed User
Longtime User
reboot phone (LG3) Android 6

Connecting in Chrome - still need to scroll to see entire window (as you already stated)

Can edit / view now...

Stock browser - spinning the wheels....
 
Upvote 0

Harris

Expert
Licensed User
Longtime User
B4X:
        If tblFields.Get("casesummary") = Null Or tblFields.Get("casesummary") = "" Then
            rCellValues.Add("-")
        Else
            Dim desc As String = tblFields.Get("casesummary")
            If desc.Length > 25 Then
                desc = desc.SubString2(0,25)&"..."
                rCellValues.Add(desc)
            Else
                rCellValues.Add(desc)
            End If   
        End If
        rCellThemes.Add("nocolor")

This is what I did to reduce screen width when on a phone... for each item
I also did the same for description (and others) since the same results appear.

Added the "dash" when null or blank to fill in the row (otherwise it all jumps up a line from the empty space- again on phone).

Desktop - not an issue (true rows - horizontal) but when it converts it to columns - phone tab - you see the issues.
 
Upvote 0
Top