now browsing by category

 

Hi All

Hi All,

Sorry for being quiet! I’m currently very busy with work and other stuff but I’ll be back soon, I think Sunday or Monday.

See you soon!

]]>

TrianguloY​ : just missing how to display Network operator and wifi network

TrianguloY​ : just missing how to display Network operator and wifi network

I have Xposed and can add permissions using Lukas Morawietz​ ‘s module

]]>

anyone had success creating iframes in a WebView in LL’s CustomView?

anyone had success creating iframes in a WebView in LL’s CustomView?

would like to make a YouTube music player embedded in LL, using the YT Player API (https://developers.google.com/youtube/iframe_api_reference)

tried Jappie Toutenhoofd ‘s WebView script which can load embedded YT videos, but some YT videos will only load via an iframe rather than direct url

https://developers.google.com/youtube/iframe_api_reference
]]>

Thank you TrianguloY​ Jappie Toutenhoofd​

Thank you TrianguloY​ Jappie Toutenhoofd​

Not sure if I’ll do for day number

]]>

I dunno how to word this basically im using LL on my TV and i managed to change the icons on a few apps using LLs…

I dunno how to word this basically im using LL on my TV and i managed to change the icons on a few apps using LLs icon picker, but when selecting the option to set an icon pack for the desktop or the drawer I get a crash and i think its because theres probably no chooser application for me to pick my icon pack from, if that makes sense. Any ideas how I can get round this?

Here is exactly were it crashes

Menu/settings/desktop/icon pack/select and apply icon pack/crash

edit: I cant select any lightning actions either just get a toast saying “action not available” I can probably get round that by using a script though 🙂

]]>

I’ve noticed LLeX doesn’t seem to realize the device is in immersive mode; if that makes sense.

I’ve noticed LLeX doesn’t seem to realize the device is in immersive mode; if that makes sense.

The nav keys do disappear, but it’s as if the nav bar is still there. I’m able to customize the nav bar color and still see it be displayed.

]]>

Lightning ⚡ on Android TV 😃 had to sideload it because it wasnt showing up in the extremely limited TV version of…

Lightning ⚡ on Android TV 😃 had to sideload it because it wasnt showing up in the extremely limited TV version of the Google playstore. Only thing is theres no menu button and no way to trigger it so I cant do much customization, beats using the default sony launcher though.

]]>

I don’t know if I have to rise this here or I should but it as a bug.

I don’t know if I have to rise this here or I should but it as a bug.

I have just got my Nexus 6, flashed last lollipop (I don’t need Marshmallow at the moment), rooted, xposed installed. I’m facing a lag when I scroll a panel. If I change the setting of Desktop >> Scroll >> overscroll animation to any value. It works fine for sometime then the issue returns again.

Anyone else facing this issue.

]]>

Suggestions/comments about the new hierarchical menu:

Suggestions/comments about the new hierarchical menu:

1) Desktops doesn’t follow formatting convention “Desktop ‘name’: #00000” instead of “Type ‘name’ (#0000)”

2) When opening it from the items/hierarchy open it in the item/container. When opening it from the edit bar open it where it was previously (current behavior)

3) Narrower icons, less space between them and less right margin (the edit and options icons I mean) maybe also add a disabled edit icon for desktops, so same icons are all aligned. (Or instead make it to open the ‘manage desktops’ screen? )

4) Instead of tabbing, use a different ‘inside container’ indicative, for example this simple but effective one: (characters ┃U+2503 ┗U-2517 ┣U-2523)

Desktop

┣ Item

┣ Folder (opened)

┃┣ Item

┃┗ Item

┣Item

┣Folder (closed)

┗Item

5) Not sure about this but: invert the z-order sorting so that top most item is placed upper in the list? Hmm, with this configuration it should be better to have the ‘items inside a container’ placed above the container item…hmm. Setting to choose between one or another? 😛 ok, maybe better leave it as it is now.

]]>

Just outta curiosity who wrote this script and why was it removed? Im sure it was on the wiki as an example.

Just outta curiosity who wrote this script and why was it removed? Im sure it was on the wiki as an example.

//Flags Name: CV_music

LL.bindClass(“android.media.AudioManager”);

LL.bindClass(“android.widget.SeekBar”);

LL.bindClass(“android.widget.FrameLayout”);

LL.bindClass(“android.view.Gravity”);

var context = LL.getContext();

var mgr = context.getSystemService(Context.AUDIO_SERVICE);

var stream = AudioManager.STREAM_MUSIC;

// see http://developer.android.com/reference/android/media/AudioManager.html for other streams

var seekBar = new SeekBar(context);

seekBar.setMax(mgr.getStreamMaxVolume(stream));

seekBar.setProgress(mgr.getStreamVolume(stream));

seekBar.setOnSeekBarChangeListener(

{ onProgressChanged: function(seekBar, progress, fromUser)

{ if(fromUser)

 { mgr.setStreamVolume(stream, progress, AudioManager.FLAG_PLAY_SOUND);

} } });

// let the bar extend horizontally but not vertically, center it in the view

var lp = new FrameLayout.LayoutParams(FrameLayout.LayoutParams.MATCH_PARENT, FrameLayout.LayoutParams.WRAP_CONTENT);

lp.gravity = Gravity.CENTER;

seekBar.setLayoutParams(lp);

// prevent the desktop to scroll when the thumb position is moved

item.setHorizontalGrab(true);

return seekBar;

]]>