Trying to get the dual screen stretch in Chrome applied to other apps - LG G8X ThinQ Questions & Answers

Hey guys,
I haven't done Android dev in a long time, but I'd be very interested in starting again just to figure out how to make all (or at least a few of the major) apps work in dual screen stretched mode like Chrome does. I'll have the phone by tomorrow, but does anyone know where to even begin looking into something like this?
If we can figure out how to make it happen, I'll gladly start modifying apps and share them so that they can be stretched across the dual screen. I'm sure it's just a flag in the App Manifest or something very straight forward like that.
Any devs with any pointers?

Here's the contents of my app Manifest of chrome on my Note 10+.
https://pastebin.com/14nWYsD1
Can anyone please paste the manifest from their G8x?
If you have Solid Explorer, on the left slide out tab, tap on Applications, then in System Apps find Chrome. Inside there's a button on top that says "Browse". Just tap that and the manifest file should be in the root folder (first thing you see).
Could someone please paste their Chrome manifest file from there?
Thanks!

For example, in the Samsung one there's a few tags like this to enable Samsung (and Note) specific features within Chrome:
Code:
<meta-data
name="com.samsung.android.sdk.multiwindow.enable" value="true">
</meta-data>
<meta-data
name="com.samsung.android.sdk.multiwindow.penwindow enable" value="true">
</meta-data>
If we can find something like this for the LG sdk, we can enable split screen mode in any app we want.
I will extract my own Chrome app manifest tomorrow, but I won't be able to modify an existing apps until Monday or so. .

For completeness sake, and for anyone else who wants to follow along, here's the manifest from the LG G8X Chrome app:
https://pastebin.com/cz3zLrXq
Todo: find something LG Specific in the new manifest, copy it over to manifest files of other apps and see if it works. Unfortunately this is going to take me a while since I don't have my PC this weekend. More to come this coming week!

Update: looks like both versions are the same. Which means the info is not in the manifest file. I'm not sure where else it would be...
Will keep looking this weekend...

So it looks like I'm using this thread as a progress marker.
I found an app called "second launcher". Trying to see if this is a lead or a dead end.
For those interested, here's the manifest file:
https://pastebin.com/YgyLUgJn
This might be of particular interest...
Code:
<provider android:name="com.lge.secondlauncher.allapps.AllAppsDBProvider"
android:readPermission="com.lge.secondlauncher.permission.READ_SETTINGS"
android:writePermission="com.lge.secondlauncher.permission.WRITE_SETTINGS"
android:exported="true"
android:authorities="com.lge.secondlauncher.AllAppsDBProvider">
</provider>

Thanks for this, man. I'm shocked only chrome and whale use wide view.
You probably already know this, but:
The second launcher is the home for the left screen. I'm using Nova Launcher right now and it only affects the right screen. The left is still using Second Launcher

Hey, yeah I gathered as much. I'm trying to see if there's a list or something in this app that is basically an allow list.
What I found interesting is that on apps that are allowed to stretch, when they do stretch across both screens, it affects everything not just that app. The keyboard, notification shade, task bar, etc etc. This capability exists, and there's just one place where there's an allow list somewhere. I just have to find it...

Including when taking screenshots.
All I did between these two screen caps, is press the wide view button. I took the screenshots from the hardware buttons so it's a system wide recognition of the new "wide" state...

I just learned a couple things:
1. Wide view is definitely just a resizing of the screen/elements. If you have wide view on and you're asked for a fingerprint, the whole thing breaks. The fingerprint symbol is in between the two screens and you have to tap it to enable the scanner on the main screen. I.e. you need 2 fingers to use it. (Screenshot below).
2. I found LG development site with a guide on how to enable widescreen view in apps. It seems a bit incomplete, but I'm looking into it.
3. Wide screen works in 2 different modes: 1) the entire Android interface stretches across both screens, the break in the middle is not handled and it's a bit wonky. 2) The app knows there's 2 screens and behaves accordingly. Only certain activities are opened on the second screen and there's information exchange (i.e. gallery app/camera app).
This second more seems a bit more involved/complicated. The first mode just tells Android that the two screens are just one big screen, feel free to stretch across. This is the one I will focus on for now. Maybe if I get time, I can make apps behave across both screens.
What this means: you probably won't see an app which shows independent "panes" like Gmail across both screens, or an e-reader with pages across both screen, unless they are specifically coded by the original developers. A lucky break could be if the app is coded as such, and could somehow be convinced that the doi is changing or it is now in landscape mode. Then it could switch to it's different configuration.
Anyway, let's see what I can uncover. Maybe on Monday I will dust of my old laptop, and try to get the LG dual screen demo app working. Once it does, I can try to extract and modify currently installed apps.

SirataXero said:
I just learned a couple things:
1. Wide view is definitely just a resizing of the screen/elements. If you have wide view on and you're asked for a fingerprint, the whole thing breaks. The fingerprint symbol is in between the two screens and you have to tap it to enable the scanner on the main screen. I.e. you need 2 fingers to use it. (Screenshot below).
2. I found LG development site with a guide on how to enable widescreen view in apps. It seems a bit incomplete, but I'm looking into it.
3. Wide screen works in 2 different modes: 1) the entire Android interface stretches across both screens, the break in the middle is not handled and it's a bit wonky. 2) The app knows there's 2 screens and behaves accordingly. Only certain activities are opened on the second screen and there's information exchange (i.e. gallery app/camera app).
This second more seems a bit more involved/complicated. The first mode just tells Android that the two screens are just one big screen, feel free to stretch across. This is the one I will focus on for now. Maybe if I get time, I can make apps behave across both screens.
What this means: you probably won't see an app which shows independent "panes" like Gmail across both screens, or an e-reader with pages across both screen, unless they are specifically coded by the original developers. A lucky break could be if the app is coded as such, and could somehow be convinced that the doi is changing or it is now in landscape mode. Then it could switch to it's different configuration.
Anyway, let's see what I can uncover. Maybe on Monday I will dust of my old laptop, and try to get the LG dual screen demo app working. Once it does, I can try to extract and modify currently installed apps.
Click to expand...
Click to collapse
2. Where did you find the guidance? All I know is the old dualscreen api sdk with no wide mode
Have you tried force all apps resizeable & secondary display option in developer menu?
I also think there is some kind of lists for dual screen wide mode supported apps. Just like the lists of some apps to access certain features (auxillary PentaCamera, multi window etc)
Have you tried to launch QSlide on wide view mode? There's a developer kit to launch some apps using qslide

harysviewty said:
2. Where did you find the guidance? All I know is the old dualscreen api sdk with no wide mode
Have you tried force all apps resizeable & secondary display option in developer menu?
I also think there is some kind of lists for dual screen wide mode supported apps. Just like the lists of some apps to access certain features (auxillary PentaCamera, multi window etc)
Have you tried to launch QSlide on wide view mode? There's a developer kit to launch some apps using qslide
Click to expand...
Click to collapse
Lg has a link to their LG Dual Screen SDK on thier site. Looks like a great start
EDIT: It also looks like the system uses Googles Foldable screen API 29 even though my phone is only running Android 9. I assume this means that the device needs to have the "resizeableActivity=true" in order for the Wide View button to appear. I am looking through Whale and Chrome now to see if that is indeed the case and if an older version of either without this snjipped of code supports wide screen
Looks like it's probably "com.naver.WhaleMediaStandaloneDualFullScreenActivity" where things get interesting... Looking through chrome now
Within the manifest of Chrome:
Code:
<activity theme="@7F14024B" name="org.chromium.chrome.browser.media.PictureInPictureActivity" exported="false"
excludeFromRecents="true"
configChanges="0x00000D80" noHistory="true"
resizeableActivity="true"
supportsPictureInPicture="true">
</activity>
Final edit: AAAANNNDD here's the manifest for whale:
Code:
<activity android:theme="@7F140101" android:name="com.naver.whale.dualscreen.DualScreenTabActivity" android:exported="false" android:taskAffinity="com.naver.whale.dualscreen" android:excludeFromRecents="true" android:configChanges="0x00001FB3" android:windowSoftInputMode="0x00000010" android:hardwareAccelerated="false"
[COLOR="red"]android:resizeableActivity="true"[/COLOR]
android:supportsPictureInPicture="true">
<intent-filter>
<action android:name="com.naver.whale.dualtab">
</action>
<category android:name="android.intent.category.BROWSABLE">
</category>
</intent-filter>
</activity>
So I'm pretty sure this is the puzzle piece we need. If we can root the device, we can force this activity any app an force full screen.
Though, Gmail has this and it does not do any sort of multi screen view for me... Hmm...

Yes! Thank you!
This is what I saw earlier as well, that it says it used the Google foldable APIs but did they back port it? I assumed (like most Android manufacturers I e. Samsung) that they just developed their own thing, so I was surprised to see them mention Android foldables.
Do you think all it needs is the resizable activity true in the manifest? If that's the case, I'm going to try it on some of my apps and see what happens!
Will report back later tonight!

I don't know for sure if it's the only thing, but Google's Dev notes on foldables mention this specifically, good luck!
I may mess with something here or there myself, this dual screen thing has a ton of potential

Yeah so I don't think that's it. I checked GMail and also checked Google Maps. Both of those have this in their main activity but neither of them support it. It may be PART of the puzzle, but it's definitely not the missing piece. Will keep looking further.

So I found something that bothers me a bit....
http://mobile.developer.lge.com/support/forums/sdk/?pageMode=Detail&tID=10018522&listPage=%2Fsupport%2Fforums%2Fsdk%2F
Thank you for your interest in LG Dual Screen.
Unfortunately, 3rd party apps can't use the APIs. Because those APIs can use only LG System App.
Click to expand...
Click to collapse
God, I really hope that's not true. So far it seems to be. Since Chrome/Whale browser, etc. are system apps.... Google Maps is not, so it can't... same with GMail…. honestly if this is true, I might return this phone. This is huge for me....
Ignore that, I think this is only valid for those specific APIs that the person in the forum referred to... please ignore my comments, carry on...

I was able to have the device spit out information about the two displays that are available. The second display definitely comes up as an HDMI display. I think I have a lead on how to get full screen apps to show up. More to come.
Here's the info that I found: https://pastebin.com/wrSzNsJT

SirataXero said:
I was able to have the device spit out information about the two displays that are available. The second display definitely comes up as an HDMI display. I think I have a lead on how to get full screen apps to show up. More to come.
Here's the info that I found: https://pastebin.com/wrSzNsJT
Click to expand...
Click to collapse
You can install 'Sentio' and 'Taskbar' now. It's like Samsung DeX, to trigger HDMI mirroring
---------- Post added at 01:54 PM ---------- Previous post was at 01:50 PM ----------
SirataXero said:
So I found something that bothers me a bit....
http://mobile.developer.lge.com/sup...il&tID=10018522&listPage=/support/forums/sdk/
God, I really hope that's not true. So far it seems to be. Since Chrome/Whale browser, etc. are system apps.... Google Maps is not, so it can't... same with GMail…. honestly if this is true, I might return this phone. This is huge for me....
Ignore that, I think this is only valid for those specific APIs that the person in the forum referred to... please ignore my comments, carry on...
Click to expand...
Click to collapse
Some Korean apps (not system apps) can use dual screen perfectly. So it's not true. I believe it's like how LG older Multi-Window feature works, there are some lists of packages names for supported apps. There's also a way to build the code inside an app
---------- Post added at 01:55 PM ---------- Previous post was at 01:54 PM ----------
SirataXero said:
Yeah so I don't think that's it. I checked GMail and also checked Google Maps. Both of those have this in their main activity but neither of them support it. It may be PART of the puzzle, but it's definitely not the missing piece. Will keep looking further.
Click to expand...
Click to collapse
Can you open a link in chrome or whale that will trigger Gmail or gmaps to open automatically?
Make sure you've enabled force resizeable app apps in developer menu

harysviewty said:
Can you open a link in chrome or whale that will trigger Gmail or gmaps to open automatically?
Make sure you've enabled force resizeable app apps in developer menu
Click to expand...
Click to collapse
Just tried it, unfortunately it shuts down wide screen moose and opens Gmail on the main screen only
Also, have those apps a shot. You can do some dual screen settings, but nothing like one large screen. Maybe I didn't go through enough settings, but I couldn't get the second screen to play nice

harysviewty said:
You can install 'Sentio' and 'Taskbar' now. It's like Samsung DeX, to trigger HDMI mirroring
Click to expand...
Click to collapse
Tried both. Neither of them saw the second screen until it was pushed over to the second screen, then I had to re-enable settings and permissions. They basically just behave like two independent devices... it's very odd.
harysviewty said:
Some Korean apps (not system apps) can use dual screen perfectly. So it's not true. I believe it's like how LG older Multi-Window feature works, there are some lists of packages names for supported apps. There's also a way to build the code inside an app
Click to expand...
Click to collapse
Do you know which apps? Are these available in the app store? (Even if just Korean version of Play Store). Could you tell me which ones (or send me APKs of them) so I can try them out/look through them?
harysviewty said:
Can you open a link in chrome or whale that will trigger Gmail or gmaps to open automatically?
Make sure you've enabled force resizeable app apps in developer menu
Click to expand...
Click to collapse
Yup, I've enabled the setting, enabled the flag in ADB, nothing happens. Gmail or Maps just instantly close down wide view and open up on one screen.

Related

[Q] Using the default "home portal" with TNTLite?

Forgive my ignorance here. I bought the GTab from Woot solely to learn about Android and tablets, I just got my ipad2 and thats the one I planned on getting the most use out of, but honestly I thought it would be good to have an Android tablet in the house.
Of course, the default OS was painful, so I put on TNTLite and ran some apps and was pretty happy. I haven't used it much since. I am still trying to find a way to stream video to the tablet (and hopefully someday out to my TV, to retire my laptop).....and am not sure which app to use. For Ipad I can use Air Video Server.
BUT ANYWAYS...
The default portal screen on TouchNTap was, I thought, pretty cool....weather, news links and time with your apps available on the bottom row.
Tell me, is there a similar type of portal app you can use on the Gtab? Is there a way to make it just be an alarm clock or a picture frame until you pick it up and want to start using it as a tablet?
TNTLite is cool, and I installed ADWLauncher (I think that is the name), but all I am seeing is now a windows desktop-looking thing. Can you use that front-end with TNTLite? Or is it just adding widgets to a "home screen" like a clock, calendar, web browser, etc.
Thanks!
Take a look at this post: http://forum.xda-developers.com/showthread.php?t=854175
If you want to alter TNT Lite to your liking, it's actually fairly straightforward - once you understand the layout.
When that firmware is run, it layers on a 100% stock image first, then I make the alterations later. You can alter either the updater-script (where the deletions are) or the /system folder (where the additions are) to tweak it to your liking. For example, if you want to keep the TNT launcher, just delete this line from the updater-script:
Code:
delete("/system/app/HomeScreen.apk");
That would add the TNT homescreen back, on the next firmware flash. This is just an example.
Sideload and Switch Home Screens to Get Back Default
HeadRusch1 said:
The default portal screen on TouchNTap was, I thought, pretty cool....weather, news links and time with your apps available on the bottom row.
Tell me, is there a similar type of portal app you can use on the Gtab?
Thanks!
Click to expand...
Click to collapse
You don't need a "similar" portal app unless you just want it. Just sideload (move the files from your PC to the sdcard via USB cable and then click/install the apks from the sdcard) the original HomeScreen.apk, Weather.apk, Clock.apk, and News.apk - then use the Home Switcher to switch to the Viewsonic HomeScreen - if you want that to be your default.
I've done this since TNTL 2.0 because I also like the look and the options.
Other apk's that will fit into the default HomeScreen package are GroceryList and TaskManager. MediaPlayer will also go into the Viewsonic HomeScreen.
In case you didn't back up the original VS default portal files - I've attached them.
Glad to see I'm not the only one who likes the original VS portal.
Thank you
I'm going to be messing with this to see if I can get it to work......however, I do have one question, and its off topic:
Is there any way to put the Gtab into sleep mode the way that an ipad goes to sleep, so you just tap the screen to wake it up? Or have it so that way it has a permanantly on clock display or a rotating picture frame function with clock?
I'd like to buy the dock for it, but not if I have to hold the power button to wake it up all the time, I realize its a little thing but it is somewhat an annoyance.

Question: How to scroll a complex webpage

Hello all,
I'm new here. First post. I hope someone can help me out, please.
I'm looking at a complex web page which has a section on one side which scrolls information in contrast to the main page area which remains static. When I touch the screen and move my finger, it just moves the entire page up, as though it is all one static image.
What setting do I need to change or what add-on do I need to download to allow it to see all the information in this scroll?
The website ends in ".jsp" if that helps...
All help is greatfully appreciated!
Recheck, if javascript is enabled in options(icon top right)>settings>advanced
Try changing UID ( from android to desktop), search for it there are many threads on it, with instructions!
If still vain, Can you share the webpage? Will try a workaround.
Though, I believe, it should show up fine! Without any modifications except for javascript enabled!
Thanks for the reply!
Javascript IS enabled. I didn't have to change it.
Try changing UID ( from android to desktop),
Click to expand...
Click to collapse
This instruction, I do not understand. I've looked for a setting but still unsure. Can you elaborate a little, please?
I'm sure there are other threads out there. I had a quick look on this website but saw nothing. I'm not sure what keywords to use to describe what's not happening for me. New to Android...
Unfortunately, I cannot show the website as it is work-related.
Well, here it goes,
type this in browser address bar:
about:debug
than hit go
new options appear in settings,
Choose debug> uastring> change to desktop
plus rendering normal and disable wide page display, in case it helps.
UID is user identifier> implemented by browsers for web servers to identify the incoming client browser as dektop or mobile device for some good odd reason! Perhaps, ah never mind.
Lastly, try firefox browser from app market if all fails.
I got the bit about Firefox but I'm afraid I couldn't follow the rest.
I typed about:debug and it did nothing I could see. The third time, it took me to some google search results.
I could see nothing in the settings about debug... but then I'm not sur wchich part of the settings you refer to.
I tried installing flash 10.3 but this made no difference.
Does anyone have any ideas on this please?
It isn't suppose to load anything, the page remains same. New "DEBUG" option appear in "settings". Just hit the top right-corner "option" button and go to "settings" than "debug" is that complex?
Type this
about:debug
press enter
go option>Settings than debug >than uastring> than choose desktop
Well that post isn't complex, but the first one was not spelt out clearly - that's why I asked for clarification.
For some reason, even though I did the above actions the first time, the debug option never appeared. Now this time it worked but either way, selecting desktop has not fixed the main problem as per first post.
Anyone with any other ideas, please let me know. Neither desktop nor flash 10.3 has fixed the problem!!
I cannot scroll down a sub-section on an otherwise fixed web page!
Wasn't spelt correctly? Strange! As both the posts appear same to me the only addition I did in former was add firefox option. Since I can't access the webpage, have no idea about the issue perhaps discussing with your company's IT advisor may help!
"spelt out" - it's a figure of speech. Not to worry...
Yes, the IT advisor is my next option but I've always found certain IT forums have been helpful with IT issues in the past so I thought I would try this one.
Have tried the following site on native android browser, honeycomb 3.1, and all panels scroll very well with touch swipe independently from the main web page. There's a scrolling marquee panel at lower right and its auto-scrolling as meant to. Is your tablet updated to honeycomb 3.1?
http://www.visionjinx.net/?load=http://www-128.ibm.com/developerworks/views/web/rss/libraryview.jsp
mughalgxt said:
Have tried the following site on native android browser, honeycomb 3.1, and all panels scroll very well with touch swipe independently from the main web page. There's a scrolling marquee panel at lower right and its auto-scrolling as meant to. Is your tablet updated to honeycomb 3.1?
http://www.visionjinx.net/?load=http://www-128.ibm.com/developerworks/views/web/rss/libraryview.jsp
Click to expand...
Click to collapse
Hi, I've also experienced problems with the built in Android safari based browser and also the Skyfire browser app when perusing this site that has a scrollable text box within the main page. There are days when the content in the scrollable box is large and scrollable. This will cause these two mentioned browsers on Android 3.1 to improperly display the page. (note: if you view it on a day when that list box has a short list of news items and is not scrollable, then the Android browser will display it without scrambling text over text all over the place).
I just checked the site today and it is in a state that will cause the bug.
http://www.tabletpcreview.com/
I downloaded then Opera browser app today and tried this page and it seems to display all the contents on the screen instead of presenting it in a scrollable list box. At least Opera is not over-laying the list contents text over the main page text though. Go try it and see.
Hope they will fix the Android browsers to decode all pages in future update.
try the touchwiz stock rom, the scrambled text or over-laying the list contents text over the main page issue, at the bottom of the page, is completely fixed in android browser owing to samsung's native tweaks!
mughalgxt said:
try the touchwiz stock rom, the scrambled text or over-laying the list contents text over the main page issue, at the bottom of the page, is completely fixed in android browser owing to samsung's native tweaks!
Click to expand...
Click to collapse
Hi mughalgxt, what is this [/B]touchwiz stock rom[/B] exactly? I have a Samsung Galaxy Tab 10.1 locked retail model which I have rooted and have already applied Pershoot's Overclock to 1.4Hhz kernel flash. The tablet is running fine as it except for the mentioned quirks.
Will overlaying this [/B]touchwiz stock rom[/B] directly on top of my already modified kernel and rooting mods upset anything?
Do you have a direct link you can provide here to get the exact version of this [/B]touchwiz stock rom[/B] that you recommended?
Edit Update: I just read a bit on that touchwiz stock rom modification and I does not seem perfect enough for me to risk messing up my tablet environment right now. I will wait for Samsung to release an official version for my Wi-Fi only tab 10.1.
Thank You!
[stock][eur]touchwiz rom, its directly from samsung, unmodded, on android development page posted by me! The browser displays the complex webpages unscrambled! The only notable issue is the UAstring! It tends to return to android mode from desktop on reboot! I have failed to note any notable speed boost from 1 to 1.4ghz overclocking more prone to freezes so far!Like to remain stock! If browser is your main priority than gotta try the stock rom and may revert back!

FYI: YouTube Full Screen and Blocked View Fix

Those of us who have had our TrueSmart have learned that while this thing is crazy cool, there are a few quirks that need to be worked out.
For example, the YouTube app's Full Screen. The TrueSmart has a square, not rectangle wide screen, so the Full Screen wouldn't be quite full.
With the Xposed Framework Installed, you can install a Mod called "App Settings" and find the YouTube app, then you can make DPI (resolution) changes and click "Force Orientation > Portrait Mode". Now when using YouTube, expanding to full screen will allow for a more 'dedicated viewing experience'.
There are some apps (found in the Play Store) that you can't access without accepting the ToS (Terms of Service), and the "accept" and "decline" buttons are below the screen. In this case, you'd need to change the DPI, and possibly more settings. I even also had the same SuperSU issues that quite a lot of us had: http://forum.xda-developers.com/showthread.php?t=2656146 There are quite a few ways to fix the spillage.
Also, simply because I feel like saying something, why don't we have subsections for General, Q&A, Accessories, Development and such? meh :/
deedscreen said:
Those of us who have had our TrueSmart have learned that while this thing is crazy cool, there are a few quirks that need to be worked out.
For example, the YouTube app's Full Screen. The TrueSmart has a square, not rectangle wide screen, so the Full Screen wouldn't be quite full.
With the Xposed Framework Installed, you can install a Mod called "App Settings" and find the YouTube app, then you can make DPI (resolution) changes and click "Force Orientation > Portrait Mode". Now when using YouTube, expanding to full screen will allow for a more 'dedicated viewing experience'.
There are some apps (found in the Play Store) that you can't access without accepting the ToS (Terms of Service), and the "accept" and "decline" buttons are below the screen. In this case, you'd need to change the DPI, and possibly more settings. I even also had the same SuperSU issues that quite a lot of us had: http://forum.xda-developers.com/showthread.php?t=2656146 There are quite a few ways to fix the spillage.
Also, simply because I feel like saying something, why don't we have subsections for General, Q&A, Accessories, Development and such? meh :/
Click to expand...
Click to collapse
Thanks. If you want to make you post a [Guide] I'll add it to the Everything sticky.
Except for the rotation issue, qemu.sf.lcd_density=115 added to the build.prop also resolves the "fit" issue on almost every app as well and is the reason why I'm adding it back to the patch for all x201s.
Lokifish Marz said:
Thanks. If you want to make your post a [Guide] I'll add it to the Everything sticky...... (Cont.)
Click to expand...
Click to collapse
I'll consider turning it into a guide. Friendly tip: It may have been a mistake but please try not to quote the entire long post, it takes up extra unneeded room, a @deedscreen mention in reply or partial quote works just fine. It can make things a bit hectic. (Ex: you have a long development thread and someone quotes the long post to say "this is cool".) Nevertheless, the guide is a good idea - now if we can only figure out how to get the status bar to always show when using -say- Nova launcher. My attempts haven't gone the greatest so far. :cyclops:
Hi Loki
Don't you just love when guys learns developers how to quote OP...
BTW - request is already sent to moderators for sections inside of Omate section.
Sent from my C6903 using Tapatalk
It was before my first cup of coffee so blame it on the lack of caffeine.
The solution I've been using is Swipe Statusbar. It's not ideal but does free up the space a consistent status bar would use. A permanent status bar fix is going to most likely require the framework and related files be gone through and redone as they use a show intent versus a hide intent from what I've been told.
I do use my ppi edit and Force Orientation on my daily device. Hopefully I can make the need for the orientation lock unnecessary and have it active at all times for all apps. That would cover the majority of users and apps used and can't remember the last time I wanted an app to rotate on the x201.
I know what you mean, with that app I've tried and it covers some areas of apps and drives me insane, I can't quite win...

Mini-apps

Just had a quick thouht is it possible to add all apps to mini apps because i find them more useful than samsungs muliwindow. And on tbis size screen one can truly multitask.
diamantericos said:
Just had a quick thouht is it possible to add all apps to mini apps because i find them more useful than samsungs muliwindow. And on tbis size screen one can truly multitask.
Click to expand...
Click to collapse
Try the Launcher Lite apk from this thread.
http://forum.xda-developers.com/cro...apps/small-apps-phone-launcher-torch-t2810994
Edit..I had installed this a while ago and had forgot how it worked. After trying it out I can see it is only an app switcher, not a way to use apps in multi window.
diamantericos said:
Just had a quick thouht is it possible to add all apps to mini apps because i find them more useful than samsungs muliwindow. And on tbis size screen one can truly multitask.
Click to expand...
Click to collapse
Unfortunately No, Samsung takes the hacking to the core level to provide their multi window capabilities, hence the 'Powered by Android' logo needs to be pushed into their boot screen by Google. Sony Small Apps on the other hand does not mess around with the core Android system so albeit limited, but it can be safely called Android, just like what Google wants. The downside is that Small App is not an Activity (even though the feature set is similar) so no direct porting between them and plus all the proprietary Views (like what Youtube did with their API) makes it impossible to use their API into Sony Small App Window. The only option is to enrich the Small App ecosystem with a capable small apps that can be taken as a light version of the real app.
This isn't small apps but it may offer some of what you are seeking. Requires root and xposed framework to be installed.
http://forum.xda-developers.com/xposed/modules/mod-xhalofloatingwindow-v2-38-movable-t2419287
Thanks for responses. and i already hqve xhalo installed but blah to it lol its not the same.

[MOD][XPOSED][GrindrMod](NEW!!)

New and improved GMod!
Custom location picker, inbox filters, backup/restore chats, bulk chat erase, grid layout, profile history, and more!
Please note that each release of GMod is specifically tied to a particular range of versions of the app. Each release will be guaranteed to function only with the specified versions of the app.
This release is compatible with version 5.6.0 - 5.13.2 (Skipped 5.12.0)
FEATURES:
Custom location picker with favorites
Optional persistent statusbar notification
Selectable 2, 3, 4 or 5-column grid layout
Individual control over notification sounds
Retain chats from blocked profiles
Option to show social media icons on the profile bar (long tap to copy username to clipboard)
Smaller "send location" button to prevent accidental sending location
Send on SHIFT+ENTER in chat text field (for WifiKeyboard)
Optional GPS Accuracy overlay on cascade
Darken the bottom button bar in chat view
Double-tap to clear text field in chat
Map overlay option on cascade*
Option to replace "Fresh Faces" with Profile History (long-tap "profile history" to clear the history)**
Bulk chat erase***
Undo the last cascade refresh by long-tapping the home tab (not for Xtra with unlimited cascade!)
Advanced inbox filters: filter by online users, received photos, blocks, search term, has profile photos, ads, one-sided chats
Received photos indicator (camera icon) option for chat inbox (tap on icon to open received photos)
Option to set the minimum GPS accuracy level to avoid registering a precise location
Option to disable sending Taps on single-tap (Prevent sending accidental taps)
Sort Cascade, Favorites or Explore page by online users (show online users first)
Remove photos sent by other users by long-tapping the photo in the chat screen
Long-tap social media icons to display username and copy to clipboard
Disable automatic deletion of older chats (truncate chats)
Disable smooth scroll to top for chat inbox (get to the top more quickly)
Inverse filters allow you to filter by "not blocked" users as well as users who have sent/received photos
Custom notification sounds. Tap the "Android" selection to open the Ringtone Picker.
Bulk tap erase (long tap on inbox tab while viewing taps)
Backup/Restore chats locally or to Google Drive
Disable Fresh Faces
Delete conversation from chat screen
Auto-generate profile display names for blank profiles
*NEW* Show message count on Inbox tab (can be disabled in module settings)
*Tapping on the GPS Accuracy text will display your current location as an overlay in the upper-left corner of the cascade.
**To view profile history, replace "Fresh Faces" with Profile History in module settings. Clear the profile history by long-tapping on the "PROFILE HISTORY" title.
***Long-tap the inbox tab to bring up a dialog giving you the option to bulk-erase one-sided chats before a certain date. You can also clear ALL chats at once. Bulk chat operations will respect currently set inbox filters.
Like my work? Please consider donating!
NOTE: This module does NOT unlock any paid features!! It does NOT allow you to view more guys than what your subscription allows. It merely fits more profiles on the display at once by increasing the number of columns
in the grid.
Works for both free Grindr and GrindrXtra.
Disclaimer: This module is neither affiliated with nor endorsed by the official Grindr app. It is provided for free with no warranty of any kind. Use at your own risk! I am not responsible for lost chats, user data, or any other problems incurred from the use of this module. GMod does not collect any personal information nor does it display advertisements of any kind. No revenue is generated or collected from the use of this software.
[Reserved]
Are you the same guy who made the old grindrmod?
How this work?
It's good like "old" version?
So far works great, thanks! Is there anything new we should be aware of coming from the other version?
A couple of things :
- I do notice that not all profiles with chats have the orange border.
- would it be possible to add swipe across screens (I think previous version of app or mod had this)?
Thanks and great job!
Everytime it's opened, it can't get a location as 'I have no Internet connection' apparently, when obviously I have.
willysmith said:
So far works great, thanks! Is there anything new we should be aware of coming from the other version?
A couple of things :
- I do notice that not all profiles with chats have the orange border.
- would it be possible to add swipe across screens (I think previous version of app or mod had this)?
Thanks and great job!
Click to expand...
Click to collapse
There is a paid feature now which too closely matches the active chats border, so it has been removed.
GrindrGuyNYC said:
There is a paid feature now which too closely matches the active chats border, so it has been removed.
Click to expand...
Click to collapse
The mod introduced that far before the app did. One might argue that they took it and monetized it from @GrindrGuy. Does this mean that if the app starts mimicking other features introduced by the mod to monetize from them that the mod will just start taking them away? Nah, I'm against this move... You and GrindrGuy ultimately decide, but I wanted to share my two cents.
willysmith said:
The mod introduced that far before the app did. One might argue that they took it and monetized it from @GrindrGuy. Does this mean that if the app starts mimicking other features introduced by the mod to monetize from them that the mod will just start taking them away? Nah, I'm against this move... You and GrindrGuy ultimately decide, but I wanted to share my two cents.
Click to expand...
Click to collapse
If you want to get "super technical" about it, this feature was introduced years ago in the original app but taken away around v3.0.
EDIT: Since I do not have Grindr Xtra, if someone would like to actually send me screenshots of what this feature looks like, I may be able to re-work it so that the module provides a similar feature that is not a direct replica of the paid feature.
I found a bug.
If i see a fresh face and hi back, module ask ne to "undo last refresh"
GrindrGuyNYC said:
If you want to get "super technical" about it, this feature was introduced years ago in the original app but taken away around v3.0.
EDIT: Since I do not have Grindr Xtra, if someone would like to actually send me screenshots of what this feature looks like, I may be able to re-work it so that the module provides a similar feature that is not a direct replica of the paid feature.
Click to expand...
Click to collapse
Oh, wow - didn't know that! Here I thought @GrindrGuy was the genius behind it!
Don't have Xtra, but something to bring back that function making it different enough might be to have a little circle with counter in it: currently app gives you a yellow circle with the number of new messages. You could play with that idea: just a yellow dot if there are viewed messages, or include the number (?).
Along the same lines, I have a suggestion: In my area you often get a few users who don't upload a photo and you just see the generic black profile pic with no user name. Would there be any harm / Would it be possible to give those profiles a random name (user1123) so as to know which user is which?
I'm still used to swiping left/right to switch between profiles and inbox. It's annoying you actually have to tap on those now. Dunno if you can revert that behavior.
Say you're chatting with someone and you want to go back to "nearby" view. you have to go back and then tap on "nearby". It might be interesting to have that navigation bar with nearby/inbox/favs persistant throughout the app, with it autohiding and showing back up when you scroll down. This way there's an easy way to always go back to home, and we also always see if there's a new message notification.
Another suggestion I had way back when was to further customize this navbar: for example, I'd love to order it to have first favs, then nearby, then inbox, and being able to swipe between the views. At this point it might also be nice to have the option of having the navbar either on the (new) bottom or (old) top.
Sorry for the long post! Thanks for your efforts, and it's also fun to think about UI design like this!
willysmith said:
Oh, wow - didn't know that! Here I thought @GrindrGuy was the genius behind it!
Don't have Xtra, but something to bring back that function making it different enough might be to have a little circle with counter in it: currently app gives you a yellow circle with the number of new messages. You could play with that idea: just a yellow dot if there are viewed messages, or include the number (?).
Click to expand...
Click to collapse
That's actually how the GrindrMod feature used to work, by "hijacking" the unread messages count to always display the yellow border regardless of whether the messages were unread or not.
willysmith said:
Along the same lines, I have a suggestion: In my area you often get a few users who don't upload a photo and you just see the generic black profile pic with no user name. Would there be any harm / Would it be possible to give those profiles a random name (user1123) so as to know which user is which?
Click to expand...
Click to collapse
That's a really good idea.
willysmith said:
I'm still used to swiping left/right to switch between profiles and inbox. It's annoying you actually have to tap on those now. Dunno if you can revert that behavior.
Say you're chatting with someone and you want to go back to "nearby" view. you have to go back and then tap on "nearby". It might be interesting to have that navigation bar with nearby/inbox/favs persistant throughout the app, with it autohiding and showing back up when you scroll down. This way there's an easy way to always go back to home, and we also always see if there's a new message notification.
Another suggestion I had way back when was to further customize this navbar: for example, I'd love to order it to have first favs, then nearby, then inbox, and being able to swipe between the views. At this point it might also be nice to have the option of having the navbar either on the (new) bottom or (old) top.
Click to expand...
Click to collapse
I'd rather not alter the UI to that extent since there may be some underlying reason for them changing it in the first place (one person suggested that the toolbar was moved to the bottom in order to encourage accidental clicks on the banner ads).
willysmith said:
Sorry for the long post! Thanks for your efforts, and it's also fun to think about UI design like this!
Click to expand...
Click to collapse
No problem. Thanks for the suggestions!
From today Grindr crash after some seconds, but no problem without the module.
How can I send a log?
Inviato dal mio ONEPLUS A3003 utilizzando Tapatalk
Take my money!
Looks like the app attachment was removed from this thread? I'm running 3.24.x or something just so Grindrmod will work. I'm being told when I open Grindr that I can only use that version for two more days until it is mandatory that I update to the latest version. At which point grindrmod will not work.
So, I'm looking forward to an update =_=
typhoonikan said:
Take my money!
Looks like the app attachment was removed from this thread? I'm running 3.24.x or something just so Grindrmod will work. I'm being told when I open Grindr that I can only use that version for two more days until it is mandatory that I update to the latest version. At which point grindrmod will not work.
So, I'm looking forward to an update =_=
Click to expand...
Click to collapse
The NEW GrindrMod is available in the Xposed repository.
LATEST VERSION:
GrindrMod 3.28.1.2
CHANGELOG:
Preserve block state with chat backup
GrindrGuyNYC said:
The NEW GrindrMod is available in the Xposed repository.
Click to expand...
Click to collapse
Thanks! I didn't know it was a whole new app there. The links to it seem dead in the xda app with the xposed modules.
@GrindrGuyNYC, is it possible to amend the photo viewer activity (when tapping on a profile picture) to always show the Android soft-keys? Every time I tap on a profile photo to open it, I have to swipe up to show the soft-keys to go back. Starts getting annoying really fast. Thanks.
PS. GrindrMod isn't listed on Xposed module library when I check in Xposed Installer (I use the one by DVDAndroid). I had to go to the repo online to download and install manually.
badelie said:
@GrindrGuyNYC, is it possible to amend the photo viewer activity (when tapping on a profile picture) to always show the Android soft-keys? Every time I tap on a profile photo to open it, I have to swipe up to show the soft-keys to go back. Starts getting annoying really fast. Thanks.
PS. GrindrMod isn't listed on Xposed module library when I check in Xposed Installer (I use the one by DVDAndroid). I had to go to the repo online to download and install manually.
Click to expand...
Click to collapse
I see it just fine in the official Xposed Installer.
@GrindrGuyNYC I'm on oreo 8.1 with systemless xposed.
The module won't show in notification bar even if I choose show always.
Another bug (on nougat too, with "standard" xposed) is if I swipe or open a new profile module ask me to undo last refresh.

Categories

Resources